-- MySQL dump 10.19  Distrib 10.2.44-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: vantag29_vital
-- ------------------------------------------------------
-- Server version	10.2.44-MariaDB-log

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

--
-- Table structure for table `wp_commentmeta`
--

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

--
-- Dumping data for table `wp_commentmeta`
--

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

--
-- Table structure for table `wp_comments`
--

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

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'Mr WordPress','','https://wordpress.org/','','2016-05-31 20:01:30','2016-05-31 20:01:30','Hi, this is a comment.\nTo delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = 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` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

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

--
-- Table structure for table `wp_options`
--

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

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://vantageprinters.com/vital','yes'),(2,'home','http://vantageprinters.com/vital','yes'),(3,'blogname','Vantage Printers','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','faran_ahmad86@yahoo.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:195:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:18:\"portfolio-items/?$\";s:35:\"index.php?post_type=avada_portfolio\";s:48:\"portfolio-items/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=avada_portfolio&feed=$matches[1]\";s:43:\"portfolio-items/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=avada_portfolio&feed=$matches[1]\";s:35:\"portfolio-items/page/([0-9]{1,})/?$\";s:53:\"index.php?post_type=avada_portfolio&paged=$matches[1]\";s:12:\"faq-items/?$\";s:29:\"index.php?post_type=avada_faq\";s:42:\"faq-items/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=avada_faq&feed=$matches[1]\";s:37:\"faq-items/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=avada_faq&feed=$matches[1]\";s:29:\"faq-items/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=avada_faq&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:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:33:\"slide/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"slide/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"slide/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"slide/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"slide/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"slide/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"slide/([^/]+)/embed/?$\";s:38:\"index.php?slide=$matches[1]&embed=true\";s:26:\"slide/([^/]+)/trackback/?$\";s:32:\"index.php?slide=$matches[1]&tb=1\";s:34:\"slide/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?slide=$matches[1]&paged=$matches[2]\";s:41:\"slide/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?slide=$matches[1]&cpage=$matches[2]\";s:30:\"slide/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?slide=$matches[1]&page=$matches[2]\";s:22:\"slide/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"slide/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"slide/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"slide/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"slide/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"slide/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:51:\"slide-page/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?slide-page=$matches[1]&feed=$matches[2]\";s:46:\"slide-page/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?slide-page=$matches[1]&feed=$matches[2]\";s:27:\"slide-page/([^/]+)/embed/?$\";s:43:\"index.php?slide-page=$matches[1]&embed=true\";s:39:\"slide-page/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?slide-page=$matches[1]&paged=$matches[2]\";s:21:\"slide-page/([^/]+)/?$\";s:32:\"index.php?slide-page=$matches[1]\";s:43:\"portfolio-items/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"portfolio-items/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"portfolio-items/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"portfolio-items/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"portfolio-items/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"portfolio-items/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"portfolio-items/([^/]+)/embed/?$\";s:48:\"index.php?avada_portfolio=$matches[1]&embed=true\";s:36:\"portfolio-items/([^/]+)/trackback/?$\";s:42:\"index.php?avada_portfolio=$matches[1]&tb=1\";s:56:\"portfolio-items/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&feed=$matches[2]\";s:51:\"portfolio-items/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&feed=$matches[2]\";s:44:\"portfolio-items/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?avada_portfolio=$matches[1]&paged=$matches[2]\";s:51:\"portfolio-items/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?avada_portfolio=$matches[1]&cpage=$matches[2]\";s:40:\"portfolio-items/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&page=$matches[2]\";s:32:\"portfolio-items/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"portfolio-items/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"portfolio-items/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"portfolio-items/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"portfolio-items/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"portfolio-items/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:35:\"portfolio_category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio_category=$matches[1]&embed=true\";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:57:\"portfolio_skills/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?portfolio_skills=$matches[1]&feed=$matches[2]\";s:52:\"portfolio_skills/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?portfolio_skills=$matches[1]&feed=$matches[2]\";s:33:\"portfolio_skills/([^/]+)/embed/?$\";s:49:\"index.php?portfolio_skills=$matches[1]&embed=true\";s:45:\"portfolio_skills/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?portfolio_skills=$matches[1]&paged=$matches[2]\";s:27:\"portfolio_skills/([^/]+)/?$\";s:38:\"index.php?portfolio_skills=$matches[1]\";s:55:\"portfolio_tags/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio_tags=$matches[1]&feed=$matches[2]\";s:50:\"portfolio_tags/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio_tags=$matches[1]&feed=$matches[2]\";s:31:\"portfolio_tags/([^/]+)/embed/?$\";s:47:\"index.php?portfolio_tags=$matches[1]&embed=true\";s:43:\"portfolio_tags/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?portfolio_tags=$matches[1]&paged=$matches[2]\";s:25:\"portfolio_tags/([^/]+)/?$\";s:36:\"index.php?portfolio_tags=$matches[1]\";s:37:\"faq-items/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"faq-items/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"faq-items/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"faq-items/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"faq-items/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"faq-items/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"faq-items/([^/]+)/embed/?$\";s:42:\"index.php?avada_faq=$matches[1]&embed=true\";s:30:\"faq-items/([^/]+)/trackback/?$\";s:36:\"index.php?avada_faq=$matches[1]&tb=1\";s:50:\"faq-items/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?avada_faq=$matches[1]&feed=$matches[2]\";s:45:\"faq-items/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?avada_faq=$matches[1]&feed=$matches[2]\";s:38:\"faq-items/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?avada_faq=$matches[1]&paged=$matches[2]\";s:45:\"faq-items/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?avada_faq=$matches[1]&cpage=$matches[2]\";s:34:\"faq-items/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?avada_faq=$matches[1]&page=$matches[2]\";s:26:\"faq-items/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"faq-items/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"faq-items/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"faq-items/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"faq-items/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"faq-items/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"faq_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?faq_category=$matches[1]&feed=$matches[2]\";s:48:\"faq_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?faq_category=$matches[1]&feed=$matches[2]\";s:29:\"faq_category/([^/]+)/embed/?$\";s:45:\"index.php?faq_category=$matches[1]&embed=true\";s:41:\"faq_category/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?faq_category=$matches[1]&paged=$matches[2]\";s:23:\"faq_category/([^/]+)/?$\";s:34:\"index.php?faq_category=$matches[1]\";s:41:\"elastic-slide/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"elastic-slide/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"elastic-slide/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"elastic-slide/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"elastic-slide/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"elastic-slide/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"elastic-slide/([^/]+)/embed/?$\";s:52:\"index.php?themefusion_elastic=$matches[1]&embed=true\";s:34:\"elastic-slide/([^/]+)/trackback/?$\";s:46:\"index.php?themefusion_elastic=$matches[1]&tb=1\";s:42:\"elastic-slide/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?themefusion_elastic=$matches[1]&paged=$matches[2]\";s:49:\"elastic-slide/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?themefusion_elastic=$matches[1]&cpage=$matches[2]\";s:38:\"elastic-slide/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?themefusion_elastic=$matches[1]&page=$matches[2]\";s:30:\"elastic-slide/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"elastic-slide/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"elastic-slide/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"elastic-slide/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"elastic-slide/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"elastic-slide/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:62:\"themefusion_es_groups/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?themefusion_es_groups=$matches[1]&feed=$matches[2]\";s:57:\"themefusion_es_groups/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?themefusion_es_groups=$matches[1]&feed=$matches[2]\";s:38:\"themefusion_es_groups/([^/]+)/embed/?$\";s:54:\"index.php?themefusion_es_groups=$matches[1]&embed=true\";s:50:\"themefusion_es_groups/([^/]+)/page/?([0-9]{1,})/?$\";s:61:\"index.php?themefusion_es_groups=$matches[1]&paged=$matches[2]\";s:32:\"themefusion_es_groups/([^/]+)/?$\";s:43:\"index.php?themefusion_es_groups=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=4&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:4:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:34:\"easy-smooth-scroll-links/index.php\";i:2;s:27:\"fusion-core/fusion-core.php\";i:3;s:23:\"revslider/revslider.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','Avada','yes'),(41,'stylesheet','Avada','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','36686','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','4','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','36686','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"avada-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:13:\"array_version\";i:3;}','yes'),(99,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'cron','a:5:{i:1682712885;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:1682715480;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1682715669;a:1:{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:1682715832;a:1:{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:7:\"version\";i:2;}','yes'),(115,'_site_transient_timeout_browser_d69aa478a72ecd3a99c77af6fcf6b917','1465329735','yes'),(116,'_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'),(117,'can_compress_scripts','0','yes'),(127,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"faran_ahmad86@yahoo.com\";s:7:\"version\";s:6:\"4.5.28\";s:9:\"timestamp\";i:1666050742;}','yes'),(137,'_site_transient_timeout_wporg_theme_feature_list','1464735841','yes'),(138,'_site_transient_wporg_theme_feature_list','a:4:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:6:\"Layout\";a:9:{i:0;s:12:\"fixed-layout\";i:1;s:12:\"fluid-layout\";i:2;s:17:\"responsive-layout\";i:3;s:10:\"one-column\";i:4;s:11:\"two-columns\";i:5;s:13:\"three-columns\";i:6;s:12:\"four-columns\";i:7;s:12:\"left-sidebar\";i:8;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:8:\"blavatar\";i:2;s:10:\"buddypress\";i:3;s:17:\"custom-background\";i:4;s:13:\"custom-colors\";i:5;s:13:\"custom-header\";i:6;s:11:\"custom-menu\";i:7;s:12:\"editor-style\";i:8;s:21:\"featured-image-header\";i:9;s:15:\"featured-images\";i:10;s:15:\"flexible-header\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}','yes'),(139,'theme_mods_twentysixteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1464725104;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(140,'current_theme','Avada','yes'),(141,'theme_mods_Avada','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:15:\"main_navigation\";i:2;s:17:\"sticky_navigation\";i:2;}}','yes'),(142,'theme_switched','','yes'),(143,'avada_dynamic_css_time','a:0:{}','yes'),(144,'widget_ad_125_125-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(145,'widget_contact_info-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(146,'widget_pyre_tabs-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(147,'widget_recent_works-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(148,'widget_tweets-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(149,'widget_flickr-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(150,'widget_social_links-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(151,'widget_facebook-like-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(152,'widget_menu-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(153,'avada_version','3.9','yes'),(154,'Avada_options','a:911:{s:16:\"google_analytics\";s:0:\"\";s:10:\"space_head\";s:1863:\"<script>\r\n /**\r\n     * This part handles the highlighting functionality.\r\n     * We use the scroll functionality again, some array creation and \r\n     * manipulation, class adding and class removing, and conditional testing\r\n     */\r\n    var aChildren = jQuery(\"ul li\").children(); // find the a children of the list items\r\n    var aArray = []; // create the empty aArray\r\n    for (var i=0; i < aChildren.length; i++) {    \r\n        var aChild = aChildren[i];\r\n        var ahref = jQuery(aChild).attr(\'href\');\r\n        aArray.push(ahref);\r\n    } // this for loop fills the aArray with attribute href values\r\n\r\n    jQuery(window).scroll(function(){\r\n        var windowPos = jQuery(window).scrollTop(); // get the offset of the window from the top of page\r\n        var windowHeight = jQuery(window).height(); // get the height of the window\r\n        var docHeight = jQuery(document).height();\r\n\r\n        for (var i=0; i < aArray.length; i++) {\r\n            var theID = aArray[i];\r\n            var divPos = jQuery(theID).offset().top; // get the offset of the div from the top of page\r\n            var divHeight = jQuery(theID).height(); // get the height of the div in question\r\n            if (windowPos >= divPos && windowPos < (divPos + divHeight)) {\r\n                jQuery(\"a[href=\'\" + theID + \"\']\").addClass(\"nav-active\");\r\n            } else {\r\n                jQuery(\"a[href=\'\" + theID + \"\']\").removeClass(\"nav-active\");\r\n            }\r\n        }\r\n\r\n        if(windowPos + windowHeight == docHeight) {\r\n            if (!jQuery(\"ul li:last-child a\").hasClass(\"nav-active\")) {\r\n                var navActiveCurrent = jQuery(\".nav-active\").attr(\"href\");\r\n                jQuery(\"a[href=\'\" + navActiveCurrent + \"\']\").removeClass(\"nav-active\");\r\n                jQuery(\"ul li:last-child a\").addClass(\"nav-active\");\r\n            }\r\n        }\r\n    });\r\n\r\n</script>\";s:10:\"space_body\";s:0:\"\";s:10:\"responsive\";s:1:\"0\";s:23:\"side_header_break_point\";s:5:\"800px\";s:19:\"content_break_point\";s:5:\"800px\";s:21:\"grid_main_break_point\";s:6:\"1099px\";s:21:\"typography_responsive\";s:1:\"0\";s:22:\"typography_sensitivity\";s:3:\"0.6\";s:17:\"typography_factor\";s:3:\"1.5\";s:11:\"mobile_zoom\";s:1:\"1\";s:6:\"layout\";s:4:\"Wide\";s:10:\"site_width\";s:6:\"1100px\";s:13:\"sidebar_width\";s:3:\"23%\";s:17:\"sidebar_2_1_width\";s:3:\"21%\";s:17:\"sidebar_2_2_width\";s:3:\"21%\";s:15:\"header_position\";s:3:\"Top\";s:13:\"header_layout\";s:2:\"v1\";s:17:\"side_header_width\";s:5:\"280px\";s:13:\"header_shadow\";s:1:\"0\";s:16:\"header_100_width\";s:1:\"1\";s:15:\"slider_position\";s:5:\"Below\";s:19:\"header_left_content\";s:11:\"Leave Empty\";s:20:\"header_right_content\";s:10:\"Navigation\";s:17:\"header_v4_content\";s:18:\"Tagline And Search\";s:13:\"header_number\";s:0:\"\";s:12:\"header_email\";s:0:\"\";s:18:\"header_banner_code\";s:0:\"\";s:14:\"header_tagline\";s:19:\"Insert Tagline Here\";s:15:\"header_bg_image\";s:0:\"\";s:14:\"header_bg_full\";s:1:\"0\";s:18:\"header_bg_parallax\";s:1:\"1\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:17:\"margin_header_top\";s:3:\"0px\";s:20:\"margin_header_bottom\";s:3:\"0px\";s:19:\"padding_header_left\";s:3:\"0px\";s:20:\"padding_header_right\";s:3:\"0px\";s:29:\"header_social_links_font_size\";s:2:\"16\";s:30:\"header_social_links_icon_color\";s:7:\"#ffffff\";s:25:\"header_social_links_boxed\";s:2:\"No\";s:29:\"header_social_links_box_color\";s:7:\"#e8e8e8\";s:32:\"header_social_links_boxed_radius\";s:3:\"4px\";s:33:\"header_social_links_boxed_padding\";s:1:\"8\";s:37:\"header_social_links_tooltip_placement\";s:6:\"Bottom\";s:13:\"header_sticky\";s:1:\"1\";s:20:\"header_sticky_tablet\";s:1:\"0\";s:20:\"header_sticky_mobile\";s:1:\"0\";s:23:\"header_sticky_shrinkage\";s:1:\"1\";s:26:\"header_sticky_type2_layout\";s:9:\"menu_only\";s:25:\"header_sticky_nav_padding\";s:0:\"\";s:27:\"header_sticky_nav_font_size\";s:0:\"\";s:4:\"logo\";s:70:\"http://vantageprinters.com/vital/wp-content/uploads/2016/06/v-logo.png\";s:11:\"logo_retina\";s:0:\"\";s:17:\"retina_logo_width\";s:0:\"\";s:18:\"retina_logo_height\";s:0:\"\";s:18:\"sticky_header_logo\";s:0:\"\";s:25:\"sticky_header_logo_retina\";s:0:\"\";s:24:\"sticky_retina_logo_width\";s:0:\"\";s:25:\"sticky_retina_logo_height\";s:0:\"\";s:11:\"mobile_logo\";s:0:\"\";s:18:\"mobile_logo_retina\";s:0:\"\";s:24:\"mobile_retina_logo_width\";s:0:\"\";s:25:\"mobile_retina_logo_height\";s:0:\"\";s:14:\"logo_alignment\";s:4:\"Left\";s:16:\"margin_logo_left\";s:3:\"0px\";s:17:\"margin_logo_right\";s:3:\"0px\";s:15:\"margin_logo_top\";s:4:\"18px\";s:18:\"margin_logo_bottom\";s:3:\"1px\";s:7:\"favicon\";s:0:\"\";s:11:\"iphone_icon\";s:0:\"\";s:18:\"iphone_icon_retina\";s:0:\"\";s:9:\"ipad_icon\";s:0:\"\";s:16:\"ipad_icon_retina\";s:0:\"\";s:15:\"menu_text_align\";s:6:\"center\";s:10:\"nav_height\";s:2:\"83\";s:20:\"nav_highlight_border\";s:1:\"3\";s:11:\"nav_padding\";s:2:\"45\";s:19:\"dropdown_menu_width\";s:5:\"180px\";s:34:\"mainmenu_dropdown_vertical_padding\";s:3:\"7px\";s:33:\"mainmenu_dropdown_display_divider\";s:1:\"1\";s:23:\"topmenu_dropwdown_width\";s:5:\"180px\";s:18:\"megamenu_max_width\";s:6:\"1100px\";s:19:\"megamenu_title_size\";s:4:\"18px\";s:30:\"megamenu_item_vertical_padding\";s:3:\"5px\";s:29:\"megamenu_item_display_divider\";s:1:\"0\";s:31:\"menu_display_dropdown_indicator\";s:1:\"0\";s:15:\"megamenu_shadow\";s:1:\"1\";s:20:\"main_nav_search_icon\";s:1:\"0\";s:20:\"main_nav_icon_circle\";s:1:\"0\";s:18:\"mobile_menu_design\";s:6:\"modern\";s:18:\"mobile_nav_padding\";s:2:\"25\";s:22:\"mobile_menu_text_align\";s:4:\"left\";s:28:\"mobile_menu_icons_top_margin\";s:3:\"0px\";s:22:\"mobile_menu_nav_height\";s:2:\"35\";s:27:\"mobile_nav_submenu_slideout\";s:1:\"1\";s:14:\"page_title_bar\";s:15:\"bar_and_content\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:20:\"page_title_100_width\";s:1:\"0\";s:17:\"page_title_height\";s:5:\"150px\";s:24:\"page_title_mobile_height\";s:4:\"70px\";s:20:\"page_title_alignment\";s:6:\"center\";s:13:\"page_title_bg\";s:0:\"\";s:20:\"page_title_bg_retina\";s:0:\"\";s:18:\"page_title_bg_full\";s:1:\"0\";s:22:\"page_title_bg_parallax\";s:1:\"0\";s:17:\"page_title_fading\";s:1:\"0\";s:17:\"page_title_bar_bs\";s:4:\"none\";s:17:\"breadcrumb_mobile\";s:1:\"0\";s:16:\"breacrumb_prefix\";s:0:\"\";s:20:\"breadcrumb_separator\";s:1:\"/\";s:33:\"breadcrumb_show_post_type_archive\";s:1:\"0\";s:26:\"breadcrumb_show_categories\";s:1:\"0\";s:18:\"slidingbar_widgets\";s:1:\"0\";s:25:\"mobile_slidingbar_widgets\";s:1:\"0\";s:21:\"slidingbar_top_border\";s:1:\"0\";s:23:\"slidingbar_open_on_load\";s:1:\"0\";s:26:\"slidingbar_widgets_columns\";s:1:\"2\";s:16:\"footer_100_width\";s:1:\"0\";s:22:\"footer_special_effects\";s:4:\"none\";s:20:\"footer_sticky_height\";s:0:\"\";s:14:\"footer_widgets\";s:1:\"0\";s:29:\"footer_widgets_center_content\";s:1:\"0\";s:22:\"footer_widgets_columns\";s:1:\"1\";s:16:\"footerw_bg_image\";s:0:\"\";s:15:\"footerw_bg_full\";s:1:\"0\";s:17:\"footerw_bg_repeat\";s:6:\"repeat\";s:14:\"footerw_bg_pos\";s:13:\"center center\";s:23:\"footer_area_top_padding\";s:3:\"0px\";s:26:\"footer_area_bottom_padding\";s:3:\"0px\";s:24:\"footer_area_left_padding\";s:3:\"0px\";s:25:\"footer_area_right_padding\";s:3:\"0px\";s:16:\"footer_copyright\";s:1:\"1\";s:31:\"footer_copyright_center_content\";s:1:\"1\";s:11:\"footer_text\";s:122:\"© 2016 | All Rights Reserved | Designed & Developed by <a href=\"http://www.vitalaims.com\" target=\"_blank\">Vital Aims</a>.\";s:21:\"copyright_top_padding\";s:4:\"18px\";s:24:\"copyright_bottom_padding\";s:4:\"16px\";s:12:\"icons_footer\";s:1:\"0\";s:29:\"footer_social_links_font_size\";s:2:\"16\";s:30:\"footer_social_links_icon_color\";s:7:\"#46494a\";s:25:\"footer_social_links_boxed\";s:2:\"No\";s:29:\"footer_social_links_box_color\";s:7:\"#222222\";s:32:\"footer_social_links_boxed_radius\";s:3:\"4px\";s:33:\"footer_social_links_boxed_padding\";s:1:\"8\";s:37:\"footer_social_links_tooltip_placement\";s:3:\"Top\";s:20:\"pages_global_sidebar\";s:1:\"0\";s:13:\"pages_sidebar\";s:4:\"None\";s:15:\"pages_sidebar_2\";s:4:\"None\";s:19:\"default_sidebar_pos\";s:5:\"Right\";s:24:\"portfolio_global_sidebar\";s:1:\"0\";s:17:\"portfolio_sidebar\";s:4:\"None\";s:19:\"portfolio_sidebar_2\";s:4:\"None\";s:26:\"portfolio_sidebar_position\";s:5:\"Right\";s:25:\"portfolio_archive_sidebar\";s:4:\"None\";s:27:\"portfolio_archive_sidebar_2\";s:4:\"None\";s:20:\"posts_global_sidebar\";s:1:\"0\";s:13:\"posts_sidebar\";s:4:\"None\";s:15:\"posts_sidebar_2\";s:4:\"None\";s:21:\"blog_sidebar_position\";s:5:\"Right\";s:20:\"blog_archive_sidebar\";s:4:\"None\";s:22:\"blog_archive_sidebar_2\";s:4:\"None\";s:18:\"woo_global_sidebar\";s:1:\"0\";s:11:\"woo_sidebar\";s:4:\"None\";s:13:\"woo_sidebar_2\";s:4:\"None\";s:20:\"woo_sidebar_position\";s:5:\"Right\";s:27:\"woocommerce_archive_sidebar\";s:4:\"None\";s:29:\"woocommerce_archive_sidebar_2\";s:4:\"None\";s:14:\"search_sidebar\";s:12:\"Blog Sidebar\";s:16:\"search_sidebar_2\";s:4:\"None\";s:23:\"search_sidebar_position\";s:5:\"Right\";s:8:\"bg_image\";s:0:\"\";s:7:\"bg_full\";s:1:\"0\";s:9:\"bg_repeat\";s:6:\"repeat\";s:8:\"bg_color\";s:7:\"#d7d6d6\";s:17:\"bg_pattern_option\";s:1:\"0\";s:10:\"bg_pattern\";s:8:\"pattern1\";s:16:\"content_bg_image\";s:0:\"\";s:15:\"content_bg_full\";s:1:\"0\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:16:\"custom_font_woff\";s:0:\"\";s:15:\"custom_font_ttf\";s:0:\"\";s:15:\"custom_font_svg\";s:0:\"\";s:15:\"custom_font_eot\";s:0:\"\";s:11:\"google_body\";s:6:\"Roboto\";s:10:\"google_nav\";s:6:\"Roboto\";s:15:\"google_headings\";s:6:\"Roboto\";s:22:\"google_footer_headings\";s:6:\"Roboto\";s:13:\"google_button\";s:6:\"Roboto\";s:14:\"gfont_settings\";s:40:\"400,400italic,700,700italic&subset=latin\";s:13:\"standard_body\";s:11:\"Select Font\";s:12:\"standard_nav\";s:11:\"Select Font\";s:17:\"standard_headings\";s:11:\"Select Font\";s:24:\"standard_footer_headings\";s:11:\"Select Font\";s:15:\"standard_button\";s:11:\"Select Font\";s:14:\"body_font_size\";s:2:\"15\";s:13:\"nav_font_size\";s:2:\"14\";s:22:\"nav_dropdown_font_size\";s:2:\"13\";s:14:\"snav_font_size\";s:2:\"12\";s:18:\"side_nav_font_size\";s:2:\"14\";s:21:\"mobile_menu_font_size\";s:2:\"12\";s:21:\"breadcrumbs_font_size\";s:2:\"10\";s:15:\"sidew_font_size\";s:2:\"13\";s:20:\"slidingbar_font_size\";s:2:\"13\";s:15:\"footw_font_size\";s:2:\"13\";s:19:\"copyright_font_size\";s:2:\"12\";s:12:\"h1_font_size\";s:2:\"40\";s:12:\"h2_font_size\";s:2:\"40\";s:12:\"h3_font_size\";s:2:\"20\";s:12:\"h4_font_size\";s:2:\"13\";s:12:\"h5_font_size\";s:2:\"12\";s:12:\"h6_font_size\";s:2:\"11\";s:21:\"post_titles_font_size\";s:2:\"18\";s:28:\"post_titles_extras_font_size\";s:2:\"18\";s:17:\"tagline_font_size\";s:2:\"16\";s:14:\"meta_font_size\";s:2:\"12\";s:20:\"page_title_font_size\";s:2:\"18\";s:30:\"page_title_subheader_font_size\";s:2:\"14\";s:20:\"pagination_font_size\";s:2:\"12\";s:18:\"woo_icon_font_size\";s:2:\"12\";s:12:\"body_font_lh\";s:2:\"20\";s:10:\"h1_font_lh\";s:2:\"48\";s:10:\"h2_font_lh\";s:2:\"48\";s:10:\"h3_font_lh\";s:2:\"24\";s:10:\"h4_font_lh\";s:2:\"20\";s:10:\"h5_font_lh\";s:2:\"18\";s:10:\"h6_font_lh\";s:2:\"17\";s:19:\"post_titles_font_lh\";s:2:\"27\";s:11:\"sec_menu_lh\";s:2:\"44\";s:16:\"font_weight_body\";s:3:\"400\";s:16:\"font_weight_menu\";s:3:\"400\";s:20:\"font_weight_headings\";s:3:\"700\";s:27:\"font_weight_footer_headings\";s:3:\"400\";s:18:\"font_weight_button\";s:3:\"700\";s:10:\"h1_font_ls\";s:1:\"0\";s:10:\"h2_font_ls\";s:1:\"0\";s:10:\"h3_font_ls\";s:1:\"0\";s:10:\"h4_font_ls\";s:1:\"0\";s:10:\"h5_font_ls\";s:1:\"0\";s:10:\"h6_font_ls\";s:1:\"0\";s:12:\"menu_font_ls\";s:1:\"0\";s:14:\"button_font_ls\";s:1:\"0\";s:13:\"h1_top_margin\";s:4:\"0.67\";s:16:\"h1_bottom_margin\";s:4:\"0.67\";s:13:\"h2_top_margin\";s:1:\"0\";s:16:\"h2_bottom_margin\";s:3:\"1.1\";s:13:\"h3_top_margin\";s:1:\"1\";s:16:\"h3_bottom_margin\";s:1:\"1\";s:13:\"h4_top_margin\";s:4:\"1.33\";s:16:\"h4_bottom_margin\";s:4:\"1.33\";s:13:\"h5_top_margin\";s:4:\"1.67\";s:16:\"h5_bottom_margin\";s:4:\"1.67\";s:13:\"h6_top_margin\";s:4:\"2.33\";s:16:\"h6_bottom_margin\";s:4:\"2.33\";s:11:\"scheme_type\";s:5:\"Light\";s:12:\"color_scheme\";s:5:\"Green\";s:13:\"primary_color\";s:7:\"#e68210\";s:19:\"slidingbar_bg_color\";a:2:{s:5:\"color\";s:7:\"#363839\";s:7:\"opacity\";s:1:\"1\";}s:15:\"header_bg_color\";a:2:{s:5:\"color\";s:7:\"#ffffff\";s:7:\"opacity\";s:1:\"1\";}s:22:\"header_sticky_bg_color\";a:2:{s:5:\"color\";s:7:\"#ffffff\";s:7:\"opacity\";s:4:\"0.97\";}s:19:\"header_border_color\";s:7:\"#e5e5e5\";s:19:\"header_top_bg_color\";s:7:\"#e68210\";s:19:\"page_title_bg_color\";s:7:\"#ffffff\";s:23:\"page_title_border_color\";s:7:\"#ffffff\";s:16:\"content_bg_color\";s:7:\"#ffffff\";s:16:\"sidebar_bg_color\";s:11:\"transparent\";s:23:\"sidebar_widget_bg_color\";s:11:\"transparent\";s:15:\"footer_bg_color\";s:7:\"#363839\";s:19:\"footer_border_color\";s:7:\"#e9eaee\";s:18:\"copyright_bg_color\";s:7:\"#282a2b\";s:22:\"copyright_border_color\";s:7:\"#4b4c4d\";s:24:\"image_gradient_top_color\";a:2:{s:5:\"color\";s:7:\"#e68210\";s:7:\"opacity\";s:3:\"0.8\";}s:27:\"image_gradient_bottom_color\";s:7:\"#e68210\";s:25:\"image_rollover_text_color\";s:7:\"#333333\";s:25:\"image_rollover_icon_color\";s:7:\"#ffffff\";s:28:\"slidingbar_toggle_icon_color\";s:7:\"#ffffff\";s:24:\"slidingbar_divider_color\";s:7:\"#282A2B\";s:20:\"footer_divider_color\";s:7:\"#505152\";s:13:\"form_bg_color\";s:7:\"#ffffff\";s:15:\"form_text_color\";s:7:\"#aaa9a9\";s:17:\"form_border_color\";s:7:\"#d2d2d2\";s:17:\"timeline_bg_color\";s:11:\"transparent\";s:14:\"timeline_color\";s:7:\"#ebeaea\";s:31:\"load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:12:\"qty_bg_color\";s:7:\"#fbfaf9\";s:18:\"qty_bg_hover_color\";s:7:\"#ffffff\";s:21:\"woo_dropdown_bg_color\";s:7:\"#fbfaf9\";s:23:\"woo_dropdown_text_color\";s:7:\"#333333\";s:25:\"woo_dropdown_border_color\";s:7:\"#dbdbdb\";s:16:\"main_top_padding\";s:4:\"55px\";s:19:\"main_bottom_padding\";s:4:\"40px\";s:16:\"hundredp_padding\";s:4:\"30px\";s:15:\"sidebar_padding\";s:1:\"0\";s:14:\"col_top_margin\";s:3:\"0px\";s:17:\"col_bottom_margin\";s:4:\"20px\";s:22:\"slidingbar_text_shadow\";s:1:\"1\";s:20:\"rollover_text_shadow\";s:1:\"1\";s:18:\"footer_text_shadow\";s:1:\"1\";s:18:\"tagline_font_color\";s:7:\"#747474\";s:16:\"page_title_color\";s:7:\"#333333\";s:8:\"h1_color\";s:7:\"#333333\";s:8:\"h2_color\";s:7:\"#333333\";s:8:\"h3_color\";s:7:\"#333333\";s:8:\"h4_color\";s:7:\"#333333\";s:8:\"h5_color\";s:7:\"#333333\";s:8:\"h6_color\";s:7:\"#333333\";s:15:\"body_text_color\";s:7:\"#747474\";s:10:\"link_color\";s:7:\"#333333\";s:22:\"breadcrumbs_text_color\";s:7:\"#333333\";s:25:\"slidingbar_headings_color\";s:7:\"#DDDDDD\";s:21:\"slidingbar_text_color\";s:7:\"#8C8989\";s:21:\"slidingbar_link_color\";s:7:\"#BFBFBF\";s:21:\"sidebar_heading_color\";s:7:\"#333333\";s:21:\"footer_headings_color\";s:7:\"#DDDDDD\";s:17:\"footer_text_color\";s:7:\"#8C8989\";s:17:\"footer_link_color\";s:7:\"#BFBFBF\";s:17:\"menu_h45_bg_color\";s:7:\"#FFFFFF\";s:16:\"menu_first_color\";s:7:\"#333333\";s:22:\"menu_hover_first_color\";s:7:\"#e68210\";s:17:\"menu_sub_bg_color\";s:7:\"#f2efef\";s:19:\"menu_bg_hover_color\";s:7:\"#f8f8f8\";s:14:\"menu_sub_color\";s:7:\"#333333\";s:18:\"menu_sub_sep_color\";s:7:\"#dcdadb\";s:17:\"woo_cart_bg_color\";s:7:\"#fafafa\";s:10:\"snav_color\";s:7:\"#ffffff\";s:29:\"header_top_first_border_color\";s:7:\"#ffffff\";s:23:\"header_top_sub_bg_color\";s:7:\"#ffffff\";s:25:\"header_top_menu_sub_color\";s:7:\"#747474\";s:30:\"header_top_menu_bg_hover_color\";s:7:\"#fafafa\";s:31:\"header_top_menu_sub_hover_color\";s:7:\"#333333\";s:29:\"header_top_menu_sub_sep_color\";s:7:\"#e5e5e5\";s:22:\"mobile_header_bg_color\";s:7:\"#ffffff\";s:28:\"mobile_menu_background_color\";s:7:\"#f9f9f9\";s:24:\"mobile_menu_border_color\";s:7:\"#dadada\";s:23:\"mobile_menu_hover_color\";s:7:\"#f6f6f6\";s:22:\"mobile_menu_font_color\";s:7:\"#333333\";s:24:\"mobile_menu_toggle_color\";s:7:\"#dadada\";s:16:\"animation_offset\";s:13:\"top-into-view\";s:15:\"dates_box_color\";s:7:\"#eef0f2\";s:11:\"button_size\";s:5:\"Large\";s:11:\"button_span\";s:2:\"no\";s:12:\"button_shape\";s:5:\"Round\";s:11:\"button_type\";s:4:\"Flat\";s:25:\"button_gradient_top_color\";s:7:\"#a0ce4e\";s:28:\"button_gradient_bottom_color\";s:7:\"#a0ce4e\";s:31:\"button_gradient_top_color_hover\";s:7:\"#96c346\";s:34:\"button_gradient_bottom_color_hover\";s:7:\"#96c346\";s:19:\"button_accent_color\";s:4:\"#fff\";s:25:\"button_accent_hover_color\";s:4:\"#fff\";s:18:\"button_bevel_color\";s:7:\"#54770F\";s:19:\"button_border_width\";s:3:\"0px\";s:18:\"carousel_nav_color\";s:15:\"rgba(0,0,0,0.6)\";s:20:\"carousel_hover_color\";s:15:\"rgba(0,0,0,0.7)\";s:14:\"carousel_speed\";s:4:\"2500\";s:16:\"checklist_circle\";s:1:\"1\";s:22:\"checklist_circle_color\";s:7:\"#a0ce4e\";s:21:\"checklist_icons_color\";s:7:\"#ffffff\";s:20:\"content_box_bg_color\";s:11:\"transparent\";s:22:\"content_box_title_size\";s:2:\"18\";s:23:\"content_box_title_color\";s:0:\"\";s:22:\"content_box_body_color\";s:0:\"\";s:23:\"content_box_icon_circle\";s:3:\"yes\";s:30:\"content_box_icon_circle_radius\";s:5:\"round\";s:22:\"content_box_icon_color\";s:7:\"#ffffff\";s:25:\"content_box_icon_bg_color\";s:7:\"#333333\";s:38:\"content_box_icon_bg_inner_border_color\";s:7:\"#333333\";s:37:\"content_box_icon_bg_inner_border_size\";s:3:\"1px\";s:38:\"content_box_icon_bg_outer_border_color\";s:0:\"\";s:37:\"content_box_icon_bg_outer_border_size\";s:0:\"\";s:21:\"content_box_icon_size\";s:2:\"21\";s:27:\"content_box_icon_hover_type\";s:4:\"fade\";s:40:\"content_box_hover_animation_accent_color\";s:0:\"\";s:21:\"content_box_link_type\";s:4:\"text\";s:21:\"content_box_link_area\";s:9:\"link-icon\";s:23:\"content_box_link_target\";s:5:\"_self\";s:22:\"content_box_margin_top\";s:3:\"0px\";s:25:\"content_box_margin_bottom\";s:4:\"60px\";s:18:\"countdown_timezone\";s:9:\"site_time\";s:20:\"countdown_show_weeks\";s:2:\"no\";s:26:\"countdown_background_color\";s:7:\"#a0ce4e\";s:26:\"countdown_background_image\";s:0:\"\";s:27:\"countdown_background_repeat\";s:9:\"no-repeat\";s:29:\"countdown_background_position\";s:13:\"center center\";s:27:\"countdown_counter_box_color\";s:7:\"#333333\";s:28:\"countdown_counter_text_color\";s:7:\"#ffffff\";s:28:\"countdown_heading_text_color\";s:7:\"#ffffff\";s:31:\"countdown_subheading_text_color\";s:7:\"#ffffff\";s:25:\"countdown_link_text_color\";s:7:\"#ffffff\";s:21:\"countdown_link_target\";s:5:\"_self\";s:17:\"counter_box_color\";s:7:\"#a0ce4e\";s:22:\"counter_box_title_size\";s:2:\"50\";s:21:\"counter_box_icon_size\";s:2:\"50\";s:22:\"counter_box_body_color\";s:7:\"#747474\";s:21:\"counter_box_body_size\";s:2:\"13\";s:24:\"counter_box_border_color\";s:7:\"#e0dede\";s:20:\"counter_box_icon_top\";s:2:\"no\";s:20:\"counter_filled_color\";s:7:\"#a0ce4e\";s:22:\"counter_unfilled_color\";s:7:\"#f6f6f6\";s:13:\"dropcap_color\";s:7:\"#a0ce4e\";s:19:\"flip_boxes_front_bg\";s:7:\"#f6f6f6\";s:24:\"flip_boxes_front_heading\";s:7:\"#333333\";s:21:\"flip_boxes_front_text\";s:7:\"#747474\";s:18:\"flip_boxes_back_bg\";s:7:\"#a0ce4e\";s:23:\"flip_boxes_back_heading\";s:7:\"#eeeded\";s:20:\"flip_boxes_back_text\";s:7:\"#ffffff\";s:22:\"flip_boxes_border_size\";s:3:\"1px\";s:23:\"flip_boxes_border_color\";s:11:\"transparent\";s:24:\"flip_boxes_border_radius\";s:3:\"4px\";s:19:\"full_width_bg_color\";s:0:\"\";s:22:\"full_width_border_size\";s:3:\"0px\";s:23:\"full_width_border_color\";s:7:\"#eae9e9\";s:17:\"icon_circle_color\";s:7:\"#333333\";s:17:\"icon_border_color\";s:7:\"#333333\";s:10:\"icon_color\";s:7:\"#ffffff\";s:21:\"imgframe_border_color\";s:7:\"#f6f6f6\";s:22:\"imageframe_border_size\";s:3:\"0px\";s:24:\"imageframe_border_radius\";s:3:\"0px\";s:20:\"imgframe_style_color\";s:7:\"#000000\";s:14:\"modal_bg_color\";s:7:\"#f6f6f6\";s:18:\"modal_border_color\";s:7:\"#ebebeb\";s:23:\"person_background_color\";s:0:\"\";s:17:\"person_text_color\";s:0:\"\";s:19:\"person_border_color\";s:7:\"#f6f6f6\";s:18:\"person_border_size\";s:3:\"0px\";s:20:\"person_border_radius\";s:3:\"0px\";s:18:\"person_style_color\";s:0:\"\";s:16:\"person_alignment\";s:4:\"Left\";s:20:\"person_icon_position\";s:3:\"Top\";s:24:\"popover_heading_bg_color\";s:7:\"#f6f6f6\";s:24:\"popover_content_bg_color\";s:7:\"#ffffff\";s:20:\"popover_border_color\";s:7:\"#ebebeb\";s:18:\"popover_text_color\";s:7:\"#747474\";s:17:\"popover_placement\";s:3:\"Top\";s:36:\"full_boxed_pricing_box_heading_color\";s:7:\"#333333\";s:29:\"sep_pricing_box_heading_color\";s:7:\"#333333\";s:17:\"pricing_box_color\";s:7:\"#a0ce4e\";s:16:\"pricing_bg_color\";s:7:\"#ffffff\";s:20:\"pricing_border_color\";s:7:\"#f8f8f8\";s:21:\"pricing_divider_color\";s:7:\"#ededed\";s:24:\"progressbar_filled_color\";s:7:\"#a0ce4e\";s:31:\"progressbar_filled_border_color\";s:0:\"\";s:30:\"progressbar_filled_border_size\";s:0:\"\";s:26:\"progressbar_unfilled_color\";s:7:\"#f6f6f6\";s:22:\"progressbar_text_color\";s:7:\"#ffffff\";s:23:\"section_sep_border_size\";s:3:\"1px\";s:14:\"section_sep_bg\";s:7:\"#f6f6f6\";s:24:\"section_sep_border_color\";s:7:\"#f6f6f6\";s:9:\"sep_color\";s:7:\"#e0dede\";s:16:\"separator_circle\";s:1:\"1\";s:21:\"separator_border_size\";s:3:\"1px\";s:20:\"sharing_box_bg_color\";s:7:\"#f6f6f6\";s:30:\"sharing_box_tagline_text_color\";s:7:\"#333333\";s:22:\"social_links_font_size\";s:2:\"16\";s:23:\"social_links_icon_color\";s:7:\"#bebdbd\";s:18:\"social_links_boxed\";s:2:\"No\";s:22:\"social_links_box_color\";s:7:\"#e8e8e8\";s:25:\"social_links_boxed_radius\";s:3:\"4px\";s:26:\"social_links_boxed_padding\";s:1:\"8\";s:30:\"social_links_tooltip_placement\";s:3:\"Top\";s:13:\"tabs_bg_color\";s:7:\"#ffffff\";s:19:\"tabs_inactive_color\";s:7:\"#ebeaea\";s:17:\"tabs_border_color\";s:7:\"#ebeaea\";s:10:\"tagline_bg\";s:7:\"#f6f6f6\";s:20:\"tagline_border_color\";s:7:\"#f6f6f6\";s:18:\"tagline_margin_top\";s:0:\"\";s:21:\"tagline_margin_bottom\";s:2:\"84\";s:20:\"testimonial_bg_color\";s:7:\"#f6f6f6\";s:22:\"testimonial_text_color\";s:7:\"#747474\";s:18:\"testimonials_speed\";s:4:\"4000\";s:19:\"testimonials_random\";s:1:\"0\";s:16:\"title_style_type\";s:6:\"double\";s:18:\"title_border_color\";s:7:\"#e0dede\";s:16:\"title_top_margin\";s:0:\"\";s:19:\"title_bottom_margin\";s:0:\"\";s:22:\"accordion_divider_line\";s:1:\"1\";s:24:\"accordian_inactive_color\";s:7:\"#333333\";s:21:\"user_login_text_align\";s:6:\"center\";s:32:\"user_login_form_background_color\";s:7:\"#f6f6f6\";s:10:\"blog_title\";s:4:\"Blog\";s:13:\"blog_subtitle\";s:0:\"\";s:24:\"blog_show_page_title_bar\";s:1:\"1\";s:11:\"blog_layout\";s:5:\"Large\";s:19:\"blog_archive_layout\";s:5:\"Large\";s:20:\"blog_pagination_type\";s:10:\"Pagination\";s:17:\"blog_grid_columns\";s:1:\"3\";s:24:\"blog_grid_column_spacing\";s:2:\"40\";s:14:\"content_length\";s:7:\"Excerpt\";s:19:\"excerpt_length_blog\";s:2:\"55\";s:18:\"strip_html_excerpt\";s:1:\"1\";s:15:\"featured_images\";s:1:\"1\";s:32:\"alternate_date_format_month_year\";s:4:\"m, Y\";s:25:\"alternate_date_format_day\";s:1:\"j\";s:20:\"timeline_date_format\";s:3:\"F Y\";s:14:\"blog_width_100\";s:1:\"0\";s:22:\"featured_images_single\";s:1:\"1\";s:11:\"blog_pn_nav\";s:1:\"0\";s:15:\"blog_post_title\";s:1:\"1\";s:11:\"author_info\";s:1:\"1\";s:18:\"social_sharing_box\";s:1:\"1\";s:13:\"related_posts\";s:1:\"0\";s:13:\"blog_comments\";s:1:\"1\";s:9:\"post_meta\";s:1:\"1\";s:16:\"post_meta_author\";s:1:\"0\";s:14:\"post_meta_date\";s:1:\"0\";s:14:\"post_meta_cats\";s:1:\"0\";s:18:\"post_meta_comments\";s:1:\"0\";s:14:\"post_meta_read\";s:1:\"0\";s:14:\"post_meta_tags\";s:1:\"1\";s:11:\"date_format\";s:7:\"F jS, Y\";s:15:\"portfolio_items\";s:2:\"10\";s:24:\"portfolio_archive_layout\";s:22:\"Portfolio Three Column\";s:24:\"portfolio_column_spacing\";s:2:\"12\";s:24:\"portfolio_content_length\";s:7:\"Excerpt\";s:24:\"excerpt_length_portfolio\";s:2:\"55\";s:28:\"portfolio_strip_html_excerpt\";s:1:\"1\";s:20:\"grid_pagination_type\";s:10:\"Pagination\";s:21:\"portfolio_text_layout\";s:7:\"unboxed\";s:14:\"portfolio_slug\";s:15:\"portfolio-items\";s:29:\"portfolio_featured_image_size\";s:7:\"cropped\";s:16:\"portfolio_pn_nav\";s:1:\"0\";s:25:\"portfolio_featured_images\";s:1:\"1\";s:38:\"portfolio_disable_first_featured_image\";s:1:\"0\";s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:1:\"1\";s:28:\"portfolio_project_desc_title\";s:1:\"1\";s:25:\"portfolio_project_details\";s:1:\"1\";s:26:\"portfolio_link_icon_target\";s:1:\"0\";s:18:\"portfolio_comments\";s:1:\"0\";s:16:\"portfolio_author\";s:1:\"0\";s:28:\"portfolio_social_sharing_box\";s:1:\"1\";s:23:\"portfolio_related_posts\";s:1:\"1\";s:22:\"sharing_social_tagline\";s:39:\"Share This Story, Choose Your Platform!\";s:15:\"social_bg_color\";s:7:\"#f6f6f6\";s:30:\"sharing_social_links_font_size\";s:2:\"16\";s:31:\"sharing_social_links_icon_color\";s:7:\"#bebdbd\";s:26:\"sharing_social_links_boxed\";s:2:\"No\";s:30:\"sharing_social_links_box_color\";s:7:\"#e8e8e8\";s:33:\"sharing_social_links_boxed_radius\";s:3:\"4px\";s:34:\"sharing_social_links_boxed_padding\";s:1:\"8\";s:38:\"sharing_social_links_tooltip_placement\";s:3:\"Top\";s:16:\"sharing_facebook\";s:1:\"1\";s:15:\"sharing_twitter\";s:1:\"1\";s:14:\"sharing_reddit\";s:1:\"1\";s:16:\"sharing_linkedin\";s:1:\"1\";s:14:\"sharing_google\";s:1:\"1\";s:14:\"sharing_tumblr\";s:1:\"1\";s:17:\"sharing_pinterest\";s:1:\"1\";s:10:\"sharing_vk\";s:1:\"1\";s:13:\"sharing_email\";s:1:\"1\";s:13:\"facebook_link\";s:0:\"\";s:15:\"social_sorter_1\";s:13:\"facebook_link\";s:11:\"flickr_link\";s:0:\"\";s:15:\"social_sorter_2\";s:11:\"flickr_link\";s:8:\"rss_link\";s:0:\"\";s:15:\"social_sorter_3\";s:8:\"rss_link\";s:12:\"twitter_link\";s:0:\"\";s:15:\"social_sorter_4\";s:12:\"twitter_link\";s:10:\"vimeo_link\";s:0:\"\";s:15:\"social_sorter_5\";s:10:\"vimeo_link\";s:12:\"youtube_link\";s:0:\"\";s:15:\"social_sorter_6\";s:12:\"youtube_link\";s:14:\"instagram_link\";s:0:\"\";s:15:\"social_sorter_7\";s:14:\"instagram_link\";s:14:\"pinterest_link\";s:0:\"\";s:15:\"social_sorter_8\";s:14:\"pinterest_link\";s:11:\"tumblr_link\";s:0:\"\";s:15:\"social_sorter_9\";s:11:\"tumblr_link\";s:11:\"google_link\";s:0:\"\";s:16:\"social_sorter_10\";s:11:\"google_link\";s:13:\"dribbble_link\";s:0:\"\";s:16:\"social_sorter_11\";s:13:\"dribbble_link\";s:9:\"digg_link\";s:0:\"\";s:16:\"social_sorter_12\";s:9:\"digg_link\";s:13:\"linkedin_link\";s:0:\"\";s:16:\"social_sorter_13\";s:13:\"linkedin_link\";s:12:\"blogger_link\";s:0:\"\";s:16:\"social_sorter_14\";s:12:\"blogger_link\";s:10:\"skype_link\";s:0:\"\";s:16:\"social_sorter_15\";s:10:\"skype_link\";s:11:\"forrst_link\";s:0:\"\";s:16:\"social_sorter_16\";s:11:\"forrst_link\";s:12:\"myspace_link\";s:0:\"\";s:16:\"social_sorter_17\";s:12:\"myspace_link\";s:15:\"deviantart_link\";s:0:\"\";s:16:\"social_sorter_18\";s:15:\"deviantart_link\";s:10:\"yahoo_link\";s:0:\"\";s:16:\"social_sorter_19\";s:10:\"yahoo_link\";s:11:\"reddit_link\";s:0:\"\";s:16:\"social_sorter_20\";s:11:\"reddit_link\";s:11:\"paypal_link\";s:0:\"\";s:16:\"social_sorter_21\";s:11:\"paypal_link\";s:12:\"dropbox_link\";s:0:\"\";s:16:\"social_sorter_22\";s:12:\"dropbox_link\";s:15:\"soundcloud_link\";s:0:\"\";s:16:\"social_sorter_23\";s:15:\"soundcloud_link\";s:7:\"vk_link\";s:0:\"\";s:16:\"social_sorter_24\";s:7:\"vk_link\";s:10:\"email_link\";s:0:\"\";s:16:\"social_sorter_25\";s:10:\"email_link\";s:13:\"social_sorter\";s:415:\"social_sorter_1,social_sorter_2,social_sorter_3,social_sorter_4,social_sorter_5,social_sorter_6,social_sorter_7,social_sorter_8,social_sorter_9,social_sorter_10,social_sorter_11,social_sorter_12,social_sorter_13,social_sorter_14,social_sorter_15,social_sorter_16,social_sorter_17,social_sorter_18,social_sorter_19,social_sorter_20,social_sorter_21,social_sorter_22,social_sorter_23,social_sorter_24,social_sorter_25\";s:16:\"custom_icon_name\";s:0:\"\";s:17:\"custom_icon_image\";s:0:\"\";s:24:\"custom_icon_image_retina\";s:0:\"\";s:17:\"retina_icon_width\";s:0:\"\";s:18:\"retina_icon_height\";s:0:\"\";s:16:\"custom_icon_link\";s:0:\"\";s:22:\"posts_slideshow_number\";s:1:\"5\";s:18:\"slideshow_autoplay\";s:1:\"1\";s:23:\"slideshow_smooth_height\";s:1:\"0\";s:15:\"slideshow_speed\";s:4:\"7000\";s:22:\"pagination_video_slide\";s:1:\"0\";s:20:\"slider_nav_box_width\";s:4:\"30px\";s:21:\"slider_nav_box_height\";s:4:\"30px\";s:17:\"slider_arrow_size\";s:4:\"14px\";s:17:\"tfes_slider_width\";s:4:\"100%\";s:18:\"tfes_slider_height\";s:5:\"400px\";s:14:\"tfes_animation\";s:5:\"sides\";s:13:\"tfes_autoplay\";s:1:\"1\";s:13:\"tfes_interval\";s:4:\"3000\";s:10:\"tfes_speed\";s:3:\"800\";s:10:\"tfes_width\";s:3:\"150\";s:18:\"es_title_font_size\";s:2:\"42\";s:20:\"es_caption_font_size\";s:2:\"20\";s:14:\"es_title_color\";s:7:\"#333333\";s:16:\"es_caption_color\";s:7:\"#747474\";s:15:\"status_lightbox\";s:1:\"0\";s:22:\"status_lightbox_single\";s:1:\"0\";s:17:\"lightbox_behavior\";s:3:\"all\";s:13:\"lightbox_skin\";s:11:\"metro-white\";s:13:\"lightbox_path\";s:8:\"vertical\";s:24:\"lightbox_animation_speed\";s:6:\"Normal\";s:15:\"lightbox_arrows\";s:1:\"1\";s:16:\"lightbox_gallery\";s:1:\"1\";s:17:\"lightbox_autoplay\";s:1:\"0\";s:24:\"lightbox_slideshow_speed\";s:4:\"5000\";s:16:\"lightbox_opacity\";s:3:\"0.9\";s:14:\"lightbox_title\";s:1:\"1\";s:13:\"lightbox_desc\";s:1:\"1\";s:15:\"lightbox_social\";s:1:\"1\";s:20:\"lightbox_deeplinking\";s:1:\"1\";s:20:\"lightbox_post_images\";s:1:\"1\";s:20:\"lightbox_video_width\";s:6:\"1280px\";s:21:\"lightbox_video_height\";s:5:\"720px\";s:13:\"email_address\";s:0:\"\";s:16:\"recaptcha_public\";s:0:\"\";s:17:\"recaptcha_private\";s:0:\"\";s:22:\"recaptcha_color_scheme\";s:5:\"light\";s:9:\"gmap_type\";s:7:\"roadmap\";s:10:\"gmap_width\";s:4:\"100%\";s:11:\"gmap_height\";s:5:\"415px\";s:14:\"gmap_topmargin\";s:4:\"55px\";s:12:\"gmap_address\";s:49:\"775 New York Ave, Brooklyn, Kings, New York 11203\";s:14:\"map_zoom_level\";s:1:\"8\";s:7:\"map_pin\";s:1:\"0\";s:18:\"gmap_pin_animation\";s:1:\"1\";s:9:\"map_popup\";s:1:\"0\";s:15:\"map_scrollwheel\";s:1:\"0\";s:9:\"map_scale\";s:1:\"0\";s:15:\"map_zoomcontrol\";s:1:\"0\";s:11:\"map_styling\";s:7:\"default\";s:17:\"map_overlay_color\";s:0:\"\";s:19:\"map_infobox_styling\";s:7:\"default\";s:19:\"map_infobox_content\";s:0:\"\";s:20:\"map_infobox_bg_color\";s:0:\"\";s:22:\"map_infobox_text_color\";s:0:\"\";s:22:\"map_custom_marker_icon\";s:0:\"\";s:13:\"search_layout\";s:4:\"Grid\";s:14:\"search_content\";s:15:\"Posts and Pages\";s:14:\"search_excerpt\";s:1:\"0\";s:23:\"search_results_per_page\";s:2:\"10\";s:22:\"search_featured_images\";s:1:\"0\";s:26:\"search_new_search_position\";s:3:\"top\";s:16:\"sidenav_behavior\";s:5:\"Hover\";s:26:\"featured_image_placeholder\";s:1:\"1\";s:12:\"excerpt_base\";s:5:\"Words\";s:16:\"disable_excerpts\";s:1:\"0\";s:14:\"link_read_more\";s:1:\"0\";s:14:\"comments_pages\";s:1:\"0\";s:21:\"featured_images_pages\";s:1:\"0\";s:18:\"faq_featured_image\";s:1:\"0\";s:11:\"faq_filters\";s:3:\"yes\";s:21:\"nofollow_social_links\";s:1:\"0\";s:16:\"social_icons_new\";s:1:\"1\";s:17:\"form_input_height\";s:4:\"29px\";s:15:\"pw_jpeg_quality\";s:2:\"90\";s:20:\"number_related_posts\";s:1:\"5\";s:21:\"related_posts_columns\";s:1:\"5\";s:28:\"related_posts_column_spacing\";s:2:\"44\";s:20:\"related_posts_layout\";s:17:\"title_on_rollover\";s:24:\"related_posts_image_size\";s:7:\"cropped\";s:22:\"related_posts_autoplay\";s:1:\"0\";s:19:\"related_posts_speed\";s:4:\"2500\";s:24:\"related_posts_navigation\";s:1:\"1\";s:19:\"related_posts_swipe\";s:1:\"0\";s:25:\"related_posts_swipe_items\";s:0:\"\";s:14:\"image_rollover\";s:1:\"1\";s:24:\"image_rollover_direction\";s:4:\"left\";s:24:\"image_rollover_icon_size\";s:2:\"15\";s:19:\"link_image_rollover\";s:1:\"0\";s:19:\"zoom_image_rollover\";s:1:\"0\";s:20:\"title_image_rollover\";s:1:\"0\";s:19:\"cats_image_rollover\";s:1:\"0\";s:26:\"icon_circle_image_rollover\";s:1:\"0\";s:22:\"pagination_box_padding\";s:7:\"2px 6px\";s:23:\"pagination_text_display\";s:1:\"1\";s:16:\"smooth_scrolling\";s:1:\"1\";s:15:\"disable_builder\";s:1:\"0\";s:27:\"disable_code_block_encoding\";s:1:\"0\";s:16:\"disable_megamenu\";s:1:\"0\";s:16:\"avada_rev_styles\";s:1:\"0\";s:22:\"avada_styles_dropdowns\";s:1:\"0\";s:15:\"use_animate_css\";s:1:\"0\";s:26:\"disable_mobile_animate_css\";s:1:\"1\";s:27:\"disable_mobile_image_hovers\";s:1:\"0\";s:9:\"status_yt\";s:1:\"0\";s:12:\"status_vimeo\";s:1:\"0\";s:11:\"status_gmap\";s:1:\"0\";s:12:\"status_totop\";s:1:\"0\";s:19:\"status_totop_mobile\";s:1:\"0\";s:20:\"status_fusion_slider\";s:1:\"0\";s:14:\"status_eslider\";s:1:\"0\";s:18:\"status_fontawesome\";s:1:\"0\";s:16:\"status_opengraph\";s:1:\"0\";s:31:\"disable_date_rich_snippet_pages\";s:1:\"0\";s:19:\"disable_woo_gallery\";s:1:\"0\";s:8:\"dev_mode\";s:1:\"0\";s:20:\"dynamic_css_compiler\";s:1:\"0\";s:22:\"dynamic_css_db_caching\";s:1:\"1\";s:15:\"cache_server_ip\";s:0:\"\";s:30:\"woocommerce_product_box_design\";s:7:\"classic\";s:9:\"woo_items\";s:2:\"12\";s:29:\"woocommerce_shop_page_columns\";s:1:\"4\";s:27:\"woocommerce_related_columns\";s:1:\"4\";s:32:\"woocommerce_archive_page_columns\";s:1:\"3\";s:30:\"woocommerce_product_tab_design\";s:8:\"vertical\";s:26:\"woocommerce_avada_ordering\";s:1:\"0\";s:36:\"woocommerce_disable_crossfade_effect\";s:1:\"0\";s:29:\"woocommerce_one_page_checkout\";s:1:\"0\";s:30:\"woocommerce_enable_order_notes\";s:1:\"1\";s:24:\"woocommerce_cart_counter\";s:1:\"0\";s:29:\"woocommerce_acc_link_main_nav\";s:1:\"0\";s:30:\"woocommerce_cart_link_main_nav\";s:1:\"1\";s:28:\"woocommerce_acc_link_top_nav\";s:1:\"1\";s:29:\"woocommerce_cart_link_top_nav\";s:1:\"1\";s:24:\"woocommerce_social_links\";s:1:\"1\";s:28:\"woocommerce_toggle_grid_list\";s:1:\"1\";s:13:\"woo_acc_msg_1\";s:55:\"Need Assistance? Call customer service at 888-555-5555.\";s:13:\"woo_acc_msg_2\";s:32:\"E-mail them at info@yourshop.com\";s:19:\"bbp_forum_header_bg\";s:7:\"#ebeaea\";s:27:\"bbp_forum_header_font_color\";s:7:\"#747474\";s:22:\"bbp_forum_border_color\";s:7:\"#ebeaea\";s:22:\"bbpress_global_sidebar\";s:1:\"0\";s:15:\"ppbress_sidebar\";s:4:\"None\";s:17:\"ppbress_sidebar_2\";s:4:\"None\";s:24:\"bbpress_sidebar_position\";s:5:\"Right\";s:26:\"primary_overlay_text_color\";s:7:\"#ffffff\";s:15:\"ec_bar_bg_color\";s:7:\"#efeded\";s:17:\"ec_bar_text_color\";s:7:\"#747474\";s:28:\"ec_calendar_heading_bg_color\";s:7:\"#b2b2b2\";s:20:\"ec_calendar_bg_color\";s:7:\"#b2b2b2\";s:19:\"ec_tooltip_bg_color\";s:7:\"#ffffff\";s:21:\"ec_tooltip_body_color\";s:7:\"#747474\";s:15:\"ec_border_color\";s:7:\"#e0dede\";s:13:\"ec_hover_type\";s:4:\"none\";s:15:\"ec_bg_list_view\";s:5:\"cover\";s:25:\"events_social_sharing_box\";s:1:\"1\";s:19:\"ec_sidebar_bg_color\";s:7:\"#f6f6f6\";s:18:\"ec_sidebar_padding\";s:2:\"4%\";s:18:\"ec_sidew_font_size\";s:2:\"17\";s:26:\"ec_sidebar_widget_bg_color\";s:7:\"#aoce4e\";s:24:\"ec_sidebar_heading_color\";s:7:\"#333333\";s:17:\"ec_text_font_size\";s:2:\"14\";s:21:\"ec_sidebar_text_color\";s:7:\"#747474\";s:21:\"ec_sidebar_link_color\";s:7:\"#333333\";s:24:\"ec_sidebar_divider_color\";s:7:\"#e8e8e8\";s:16:\"ec_sidebar_width\";s:3:\"32%\";s:20:\"ec_sidebar_2_1_width\";s:3:\"21%\";s:20:\"ec_sidebar_2_2_width\";s:3:\"21%\";s:17:\"ec_global_sidebar\";s:1:\"0\";s:10:\"ec_sidebar\";s:4:\"None\";s:12:\"ec_sidebar_2\";s:4:\"None\";s:14:\"ec_sidebar_pos\";s:5:\"Right\";s:10:\"custom_css\";s:2509:\".fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}\";s:15:\"heading_general\";s:0:\"\";s:4:\"code\";s:81:\"<h3 style=\'margin: 0;\'>Tracking / Space Before Head / Space Before Body Code</h3>\";s:18:\"heading_responsive\";s:0:\"\";s:18:\"heading_site_width\";s:0:\"\";s:21:\"content_sidebar_width\";s:96:\"<h3 style=\'margin: 0;\'>Sidebar Width</h3><p>These settings are used on pages with 1 sidebar.</p>\";s:29:\"content_sidebar_sidebar_width\";s:107:\"<h3 style=\'margin: 0;\'>Sidebar + Sidebar Width</h3><p>These settings are used on pages with 2 sidebars.</p>\";s:14:\"heading_header\";s:0:\"\";s:13:\"header_info_1\";s:50:\"<h3 style=\'margin: 0;\'>Header Content Options</h3>\";s:13:\"header_info_2\";s:45:\"<h3 style=\'margin: 0;\'>Header Background</h3>\";s:13:\"header_info_3\";s:47:\"<h3 style=\'margin: 0;\'>Header Social Icons</h3>\";s:21:\"heading_sticky_header\";s:0:\"\";s:18:\"sticky_header_info\";s:49:\"<h3 style=\'margin: 0;\'>Sticky Header Options</h3>\";s:12:\"heading_logo\";s:0:\"\";s:11:\"header_info\";s:46:\"<h3 style=\'margin: 0;\'>Breadcrumb Options</h3>\";s:19:\"sticky_logo_wrapper\";s:46:\"<h3 style=\'margin: 0;\'>Sticky Header Logo</h3>\";s:19:\"mobile_logo_wrapper\";s:39:\"<h3 style=\'margin: 0;\'>Mobile Logo</h3>\";s:21:\"logo_settings_wrapper\";s:41:\"<h3 style=\'margin: 0;\'>Logo Settings</h3>\";s:8:\"favicons\";s:43:\"<h3 style=\'margin: 0;\'>Favicon Options</h3>\";s:12:\"heading_menu\";s:0:\"\";s:19:\"mobile_menu_options\";s:47:\"<h3 style=\'margin: 0;\'>Mobile Menu Options</h3>\";s:22:\"heading_page_title_bar\";s:0:\"\";s:19:\"heading_sliding_bar\";s:0:\"\";s:11:\"sliding_bar\";s:47:\"<h3 style=\'margin: 0;\'>Sliding Bar Options</h3>\";s:14:\"heading_footer\";s:0:\"\";s:25:\"footer_widgets_area_title\";s:55:\"<h3 style=\'margin: 0;\'>Footer Widgets Area Options</h3>\";s:27:\"footer_parallax_effect_info\";s:59:\"This enables a fixed footer with parallax scrolling effect.\";s:28:\"footer_area_bg_parallax_info\";s:115:\"This enables a parallax effect on the background image selected in \'Background Image For Footer Widget Area\' field.\";s:18:\"footer_sticky_info\";s:243:\"This enables a sticky footer. The entire footer area will always be \'below the fold\'. On very short pages, it makes sure that the footer sticks at the bottom, just above the fold.<br />IMPORTANT: \'Sticky Footer Height\' field must be filled in.\";s:41:\"footer_sticky_with_parallax_bg_image_info\";s:200:\"This enables a sticky footer together with a parallax effect on the background image. The entire footer area will always be \'below the fold\'. IMPORTANT: \'Sticky Footer Height\' field must be filled in.\";s:20:\"copyright_area_title\";s:57:\"<h3 style=\'margin: 0;\'>Footer Copyright Area Options</h3>\";s:24:\"footer_social_icon_title\";s:47:\"<h3 style=\'margin: 0;\'>Social Icon Options</h3>\";s:16:\"heading_sidebars\";s:0:\"\";s:14:\"pages_sidebars\";s:33:\"<h3 style=\'margin: 0;\'>Pages</h3>\";s:5:\"pages\";s:33:\"<h3 style=\'margin: 0;\'>Pages</h3>\";s:9:\"portfolio\";s:43:\"<h3 style=\'margin: 0;\'>Portfolio Posts</h3>\";s:15:\"portfolio_posts\";s:43:\"<h3 style=\'margin: 0;\'>Portfolio Posts</h3>\";s:17:\"portfolio_archive\";s:60:\"<h3 style=\'margin: 0;\'>Portfolio Archive/Category Pages</h3>\";s:10:\"blog_posts\";s:38:\"<h3 style=\'margin: 0;\'>Blog Posts</h3>\";s:13:\"blog_archives\";s:55:\"<h3 style=\'margin: 0;\'>Blog Archive/Category Pages</h3>\";s:12:\"woo_products\";s:48:\"<h3 style=\'margin: 0;\'>Woocommerce Products</h3>\";s:12:\"woo_archives\";s:62:\"<h3 style=\'margin: 0;\'>WooCommerce Archive/Category Pages</h3>\";s:11:\"search_only\";s:39:\"<h3 style=\'margin: 0;\'>Search Page</h3>\";s:18:\"heading_background\";s:0:\"\";s:15:\"boxed_mode_only\";s:76:\"<h3 style=\'margin: 0;\'>Background options below only work in boxed mode</h3>\";s:15:\"both_modes_only\";s:79:\"<h3 style=\'margin: 0;\'>Background Options Below Work For Boxed & Wide Mode</h3>\";s:18:\"heading_typography\";s:0:\"\";s:19:\"custom_heading_font\";s:174:\"<h3 style=\'margin: 0;\'>Custom Font For Menus And Headings</h3><p style=\'margin-bottom:0;\'>This will override the google / standard font options. All 4 files are required.</p>\";s:18:\"google_fonts_intro\";s:113:\"<h3 style=\'margin: 0;\'>Google Fonts</h3><p style=\'margin-bottom:0;\'>This will override standard font options.</p>\";s:20:\"standard_fonts_intro\";s:42:\"<h3 style=\'margin: 0;\'>Standard Fonts</h3>\";s:15:\"font_size_intro\";s:38:\"<h3 style=\'margin: 0;\'>Font Sizes</h3>\";s:25:\"font_line_heights_wrapper\";s:45:\"<h3 style=\'margin: 0;\'>Font Line Heights</h3>\";s:20:\"font_weights_wrapper\";s:40:\"<h3 style=\'margin: 0;\'>Font Weights</h3>\";s:24:\"font_weights_description\";s:414:\"<ul class=\'list\'><li>If you use a custom font, the font weight will correspond to the font weight of the uploaded files, thus these settings do not apply.</li><li>If you use a google font, make sure to load the font weight in \'Google Font Settings\' field that corresponds to the one in parenthesis here.</li><li>Browser standard fonts in general support only \'Normal (400)\' and \'Bold (700)\' font weights.</li></ul>\";s:27:\"font_letter_spacing_wrapper\";s:47:\"<h3 style=\'margin: 0;\'>Font Letter Spacing</h3>\";s:20:\"font_margins_wrapper\";s:40:\"<h3 style=\'margin: 0;\'>Font Margins</h3>\";s:15:\"heading_styling\";s:0:\"\";s:17:\"bg_colors_wrapper\";s:45:\"<h3 style=\'margin: 0;\'>Background Colors</h3>\";s:22:\"element_colors_wrapper\";s:42:\"<h3 style=\'margin: 0;\'>Element Colors</h3>\";s:23:\"element_options_wrapper\";s:42:\"<h3 style=\'margin: 0;\'>Layout Options</h3>\";s:19:\"font_colors_wrapper\";s:39:\"<h3 style=\'margin: 0;\'>Font Colors</h3>\";s:24:\"main_menu_colors_wrapper\";s:44:\"<h3 style=\'margin: 0;\'>Main Menu Colors</h3>\";s:17:\"menu_colors_intro\";s:49:\"<h3 style=\'margin: 0;\'>Secondary Menu Colors</h3>\";s:26:\"mobile_menu_colors_wrapper\";s:46:\"<h3 style=\'margin: 0;\'>Mobile Menu Colors</h3>\";s:25:\"heading_shortcode_styling\";s:0:\"\";s:14:\"blog_shortcode\";s:42:\"<h3 style=\'margin: 0;\'>Blog Shortcode</h3>\";s:16:\"button_shortcode\";s:44:\"<h3 style=\'margin: 0;\'>Button Shortcode</h3>\";s:18:\"carousel_shortcode\";s:46:\"<h3 style=\'margin: 0;\'>Carousel Shortcode</h3>\";s:19:\"checklist_shortcode\";s:47:\"<h3 style=\'margin: 0;\'>Checklist Shortcode</h3>\";s:12:\"cb_shortcode\";s:49:\"<h3 style=\'margin: 0;\'>Content Box Shortcode</h3>\";s:19:\"countdown_shortcode\";s:47:\"<h3 style=\'margin: 0;\'>Countdown Shortcode</h3>\";s:18:\"counterb_shortcode\";s:51:\"<h3 style=\'margin: 0;\'>Counter Boxes Shortcode</h3>\";s:12:\"cc_shortcode\";s:52:\"<h3 style=\'margin: 0;\'>Counter Circle Shortcode</h3>\";s:17:\"dropcap_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Dropcap Shortcode</h3>\";s:15:\"flipb_shortcode\";s:48:\"<h3 style=\'margin: 0;\'>Flip Boxes Shortcode</h3>\";s:19:\"fullwidth_shortcode\";s:48:\"<h3 style=\'margin: 0;\'>Full Width Shortcode</h3>\";s:14:\"icon_shortcode\";s:42:\"<h3 style=\'margin: 0;\'>Icon Shortcode</h3>\";s:14:\"imgf_shortcode\";s:49:\"<h3 style=\'margin: 0;\'>Image Frame Shortcode</h3>\";s:15:\"modal_shortcode\";s:43:\"<h3 style=\'margin: 0;\'>Modal Shortcode</h3>\";s:16:\"person_shortcode\";s:44:\"<h3 style=\'margin: 0;\'>Person Shortcode</h3>\";s:17:\"popover_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Popover Shortcode</h3>\";s:22:\"pricingtable_shortcode\";s:51:\"<h3 style=\'margin: 0;\'>Pricing Table Shortcode</h3>\";s:21:\"progressbar_shortcode\";s:50:\"<h3 style=\'margin: 0;\'>Progress Bar Shortcode</h3>\";s:26:\"sectionseparator_shortcode\";s:55:\"<h3 style=\'margin: 0;\'>Section Separator Shortcode</h3>\";s:19:\"separator_shortcode\";s:47:\"<h3 style=\'margin: 0;\'>Separator Shortcode</h3>\";s:20:\"sharingbox_shortcode\";s:49:\"<h3 style=\'margin: 0;\'>Sharing Box Shortcode</h3>\";s:21:\"sociallinks_shortcode\";s:50:\"<h3 style=\'margin: 0;\'>Social Links Shortcode</h3>\";s:14:\"tabs_shortcode\";s:42:\"<h3 style=\'margin: 0;\'>Tabs Shortcode</h3>\";s:17:\"tagline_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Tagline Shortcode</h3>\";s:22:\"testimonials_shortcode\";s:50:\"<h3 style=\'margin: 0;\'>Testimonials Shortcode</h3>\";s:15:\"title_shortcode\";s:43:\"<h3 style=\'margin: 0;\'>Title Shortcode</h3>\";s:19:\"accordion_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Toggles Shortcode</h3>\";s:15:\"login_shortcode\";s:49:\"<h3 style=\'margin: 0;\'>User Login Shortcodes</h3>\";s:12:\"heading_blog\";s:0:\"\";s:16:\"blog_single_post\";s:62:\"<h3 style=\'margin: 0;\'>Portfolio Single Post Page Options</h3>\";s:9:\"blog_meta\";s:45:\"<h3 style=\'margin: 0;\'>Blog Meta Options</h3>\";s:17:\"heading_portfolio\";s:0:\"\";s:26:\"heading_social_sharing_box\";s:0:\"\";s:35:\"social_share_box_icon_options_title\";s:57:\"<h3 style=\'margin: 0;\'>Social Share Box Icon Options</h3>\";s:28:\"social_share_box_links_title\";s:50:\"<h3 style=\'margin: 0;\'>Social Share Box Links</h3>\";s:20:\"heading_social_media\";s:0:\"\";s:27:\"custom_color_scheme_element\";s:46:\"<h3 style=\'margin: 0;\'>Custom Social Icon</h3>\";s:18:\"heading_slideshows\";s:0:\"\";s:22:\"heading_elastic_slider\";s:0:\"\";s:16:\"heading_lightbox\";s:0:\"\";s:8:\"lightbox\";s:44:\"<h3 style=\'margin: 0;\'>Lightbox Options</h3>\";s:15:\"heading_contact\";s:0:\"\";s:9:\"recaptcha\";s:50:\"<h3 style=\'margin: 0;\'>ReCaptcha Spam Options</h3>\";s:10:\"google_map\";s:53:\"<h3 style=\'margin: 0;\'>Google Map Design Styling</h3>\";s:19:\"heading_search_page\";s:0:\"\";s:6:\"search\";s:42:\"<h3 style=\'margin: 0;\'>Search Options</h3>\";s:13:\"heading_extra\";s:0:\"\";s:12:\"misc_options\";s:49:\"<h3 style=\'margin: 0;\'>Miscellaneous Options</h3>\";s:9:\"rollovers\";s:46:\"<h3 style=\'margin: 0;\'>Pagination Options</h3>\";s:16:\"heading_advanced\";s:0:\"\";s:22:\"enable_disable_heading\";s:76:\"<h3 style=\'margin: 0;\'>Enable / Disable Theme Features & Plugin Support</h3>\";s:28:\"dynamic_css_compiler_heading\";s:40:\"<h3 style=\'margin: 0;\'>Dynamic CSS.</h3>\";s:19:\"heading_woocommerce\";s:0:\"\";s:15:\"heading_bbpress\";s:0:\"\";s:16:\"bbpress_sidebars\";s:35:\"<h3 style=\'margin: 0;\'>BBPress</h3>\";s:10:\"heading_ec\";s:0:\"\";s:38:\"ec_single_event_detail_section_heading\";s:55:\"<h3 style=\'margin: 0;\'>Single Event Detail Section</h3>\";s:24:\"ec_content_sidebar_width\";s:146:\"<h3 style=\'margin: 0;\'>Events Content + Sidebar Width</h3><p>These settings are used on pages with 1 sidebar. Total values must add up to 100.</p>\";s:32:\"ec_content_sidebar_sidebar_width\";s:157:\"<h3 style=\'margin: 0;\'>Events Content + Sidebar + Sidebar Width</h3><p>These settings are used on pages with 2 sidebars. Total values must add up to 100.</p>\";s:25:\"ec_global_sidebar_heading\";s:49:\"<h3 style=\'margin: 0;\'>Events Global Sidebar</h3>\";s:18:\"heading_custom_css\";s:0:\"\";s:18:\"advanced_css_intro\";s:55:\"<h3 style=\'margin: 0;\'>Advanced CSS Customizations</h3>\";s:15:\"custom_css_info\";s:254:\"Paste your CSS code, do not include any tags or HTML in the field. Any custom CSS entered here will override the theme CSS. In some cases, the !important tag may be needed. Don\'t URL encode image or svg paths. Contents of this field will be auto encoded.\";s:14:\"heading_backup\";s:0:\"\";s:9:\"of_backup\";s:0:\"\";s:11:\"of_transfer\";s:0:\"\";}','yes'),(155,'avada_disable_builder','0','yes'),(156,'avada_disable_encoding','0','yes'),(157,'avada_dynamic_css_posts','a:12:{i:200;b:0;i:195;b:0;i:201;b:0;i:193;b:0;i:202;b:0;i:4;b:0;i:203;b:0;i:194;b:0;i:168;b:0;i:204;b:0;i:205;b:0;i:206;b:0;}','yes'),(158,'shop_catalog_image_size','a:3:{s:5:\"width\";i:500;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(159,'shop_single_image_size','a:3:{s:5:\"width\";i:500;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(160,'shop_thumbnail_image_size','a:3:{s:5:\"width\";i:120;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(163,'avada_theme_version','3.9','yes'),(165,'category_children','a:0:{}','yes'),(171,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(185,'_transient_timeout_avada_dynamic_css_5','1464731637','no'),(192,'taxonomy_3','a:17:{s:12:\"slider_width\";s:4:\"100%\";s:13:\"slider_height\";s:5:\"400px\";s:20:\"slider_content_width\";s:0:\"\";s:11:\"full_screen\";s:1:\"1\";s:8:\"parallax\";s:1:\"1\";s:10:\"nav_arrows\";s:1:\"0\";s:13:\"nav_box_width\";s:4:\"63px\";s:14:\"nav_box_height\";s:4:\"63px\";s:14:\"nav_arrow_size\";s:4:\"25px\";s:18:\"pagination_circles\";s:1:\"0\";s:8:\"autoplay\";s:1:\"0\";s:4:\"loop\";s:1:\"0\";s:9:\"animation\";s:4:\"fade\";s:15:\"slideshow_speed\";s:4:\"7000\";s:15:\"animation_speed\";s:3:\"600\";s:16:\"typo_sensitivity\";s:1:\"1\";s:11:\"typo_factor\";s:3:\"1.5\";}','yes'),(194,'_transient_timeout_avada_dynamic_css_global','1682715228','no'),(201,'taxonomy_4','a:17:{s:12:\"slider_width\";s:4:\"100%\";s:13:\"slider_height\";s:5:\"500px\";s:20:\"slider_content_width\";s:0:\"\";s:11:\"full_screen\";s:1:\"0\";s:8:\"parallax\";s:1:\"1\";s:10:\"nav_arrows\";s:1:\"0\";s:13:\"nav_box_width\";s:4:\"63px\";s:14:\"nav_box_height\";s:4:\"63px\";s:14:\"nav_arrow_size\";s:4:\"25px\";s:18:\"pagination_circles\";s:1:\"0\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:9:\"animation\";s:4:\"fade\";s:15:\"slideshow_speed\";s:4:\"7000\";s:15:\"animation_speed\";s:3:\"600\";s:16:\"typo_sensitivity\";s:1:\"1\";s:11:\"typo_factor\";s:3:\"1.5\";}','yes'),(202,'slide-page_children','a:0:{}','yes'),(232,'_transient_timeout_avada_dynamic_css_28','1464744607','no'),(247,'portfolio_category_children','a:0:{}','yes'),(275,'recently_activated','a:1:{s:31:\"advance-portfolio-grid/main.php\";i:1465119715;}','yes'),(292,'wpcf7','a:2:{s:7:\"version\";s:5:\"4.4.2\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1464785921;s:7:\"version\";s:5:\"4.4.2\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(313,'portfolio_skills_children','a:0:{}','yes'),(338,'_site_transient_timeout_browser_6777022040190ec8fbcd24843cf4a4ea','1465404180','yes'),(339,'_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'),(354,'_site_transient_timeout_browser_3af24c94f45b2e3c023e286a6a4d41f2','1465409485','yes'),(355,'_site_transient_browser_3af24c94f45b2e3c023e286a6a4d41f2','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'),(365,'revslider-update-check-short','1642617141','yes'),(366,'revslider-templates-check','1642617142','yes'),(367,'rs-templates-new','','yes'),(368,'rs-templates','a:2:{s:6:\"slider\";a:532:{i:0;a:22:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:22:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:22:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:22:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:22:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:22:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:413:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:23:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:7;a:22:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:22:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:22:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:23:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:416:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:11;a:23:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:12;a:22:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:23:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:14;a:22:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:22:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:22:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:22:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:22:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:22:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:23:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:435:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:21;a:22:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:23:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:23;a:22:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:23:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:25;a:22:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:22:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:23:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:28;a:23:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:412:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:29;a:22:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:22:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:22:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:22:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:22:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:23:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:35;a:23:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:633:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:36;a:22:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:22:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:22:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:23:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen hero block with unique animated text and blur effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:495:\"<span class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to change the background media and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:40;a:22:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:22:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:22:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:297:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:22:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:290:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:22:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:22:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:22:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:22:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:22:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:22:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:22:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:22:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:657:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:22:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:659:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:23:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:535:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:54;a:22:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:509:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:22:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:638:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:22:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:22:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:22:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:22:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:22:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:22:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:22:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:22:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:407:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:22:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:23:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:541:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/whiteboard-addon/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:66;a:23:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:493:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:67;a:25:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:25:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:25:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:25:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:25:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:422:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:25:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:25:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:25:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:25:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:25:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:25:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:25:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:25:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:25:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:25:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:25:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:22:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:22:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:23:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:86;a:22:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:25:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:25:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:25:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:26:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:91;a:26:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:92;a:25:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:25:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:25:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:22:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:22:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:26:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:98;a:25:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:25:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:25:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:25:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:22:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:23:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:104;a:23:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:105;a:22:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:403:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/typewriter-addon/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:106;a:22:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:107;a:26:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:108;a:26:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:109;a:26:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:110;a:26:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:111;a:26:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:112;a:26:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:113;a:26:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:114;a:26:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:115;a:26:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:116;a:26:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:117;a:26:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:118;a:26:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:119;a:26:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:120;a:26:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:121;a:26:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:122;a:26:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:123;a:26:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:124;a:26:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:125;a:26:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:542:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:126;a:22:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:317:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:127;a:22:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:128;a:22:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:129;a:22:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:130;a:22:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:442:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:131;a:22:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:22:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:23:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:387:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:134;a:22:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:135;a:23:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:136;a:23:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"{\"1\":{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}}\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:137;a:22:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:23:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/filmstrip-add-on-slider/ \";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:180:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:139;a:22:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:22:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/website-intro-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:22:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/minimal-mask-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:22:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:23:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:144;a:22:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:26:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:146;a:26:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:147;a:26:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:148;a:26:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:149;a:26:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.4\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:150;a:26:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:151;a:26:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:152;a:26:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:153;a:26:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:154;a:26:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:155;a:26:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:156;a:26:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:157;a:26:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:158;a:22:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/before-after-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:159;a:22:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:160;a:22:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/overexposure-transition-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:161;a:22:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/parallax-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:162;a:26:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:163;a:26:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:164;a:26:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:165;a:26:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:166;a:26:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:167;a:26:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:168;a:26:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:169;a:26:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:170;a:23:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:171;a:22:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">An example template for our Panorama 360 tour add-on, created for the real estate market.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:165:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:172;a:22:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:168:\"<span class=\"ttm_content\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:173;a:22:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:337:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:174;a:23:{s:2:\"id\";s:3:\"210\";s:5:\"title\";s:21:\"Cryptocurrency Prices\";s:5:\"alias\";s:12:\"cryptoslider\";s:3:\"zip\";s:16:\"cryptoslider.zip\";s:3:\"uid\";s:32:\"c4b02210387f11946223977e940d9e9e\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";s:7:\"preview\";s:95:\"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/\";s:7:\"version\";s:5:\"1.0.6\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:410:\"<span class=\"ttm_content\">Please refer to the \"Custom JavaScript\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:175;a:25:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:176;a:25:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:177;a:25:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:178;a:25:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:179;a:25:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:180;a:26:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:181;a:23:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:182;a:26:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:183;a:26:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:184;a:26:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:185;a:26:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:186;a:26:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:187;a:26:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:188;a:26:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:189;a:26:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:190;a:26:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:191;a:26:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:192;a:26:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:193;a:26:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:194;a:23:{s:2:\"id\";s:3:\"233\";s:5:\"title\";s:18:\"Clean Landing Page\";s:5:\"alias\";s:16:\"cleanlandingpage\";s:3:\"zip\";s:20:\"cleanlandingpage.zip\";s:3:\"uid\";s:32:\"727a3680d312f22c6a5998ebdb9afe52\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/clean-landing-page-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:195;a:23:{s:2:\"id\";s:3:\"234\";s:5:\"title\";s:9:\"Clear Cut\";s:5:\"alias\";s:8:\"clearcut\";s:3:\"zip\";s:12:\"clearcut.zip\";s:3:\"uid\";s:32:\"07f43c00e9b4d3057a03cdb3385ad2b7\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:196;a:25:{s:2:\"id\";s:3:\"236\";s:5:\"title\";s:17:\"Wonderstruck Menu\";s:5:\"alias\";s:17:\"wonderstruck_menu\";s:3:\"zip\";s:27:\"packs/wonderstruck_menu.zip\";s:3:\"uid\";s:32:\"0a976e9aaae59c4f795b38f59f5a08d8\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:197;a:25:{s:2:\"id\";s:3:\"237\";s:5:\"title\";s:19:\"Wonderstruck Header\";s:5:\"alias\";s:19:\"wonderstruck_header\";s:3:\"zip\";s:29:\"packs/wonderstruck_header.zip\";s:3:\"uid\";s:32:\"e1379f77a902960a0ce12d44d85a9e0a\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:198;a:25:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:18:\"Wonderstruck About\";s:5:\"alias\";s:18:\"wonderstruck_about\";s:3:\"zip\";s:28:\"packs/wonderstruck_about.zip\";s:3:\"uid\";s:32:\"d207fb140fd328acc3038300ea52082a\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:199;a:25:{s:2:\"id\";s:3:\"239\";s:5:\"title\";s:18:\"Wonderstruck Works\";s:5:\"alias\";s:18:\"wonderstruck-works\";s:3:\"zip\";s:28:\"packs/wonderstruck-works.zip\";s:3:\"uid\";s:32:\"4476935097e27d92454b0011b7700c1d\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:200;a:25:{s:2:\"id\";s:3:\"240\";s:5:\"title\";s:20:\"Wonderstruck Contact\";s:5:\"alias\";s:20:\"wonderstruck-contact\";s:3:\"zip\";s:30:\"packs/wonderstruck-contact.zip\";s:3:\"uid\";s:32:\"9e4911521f77bce2b8efa40f4c2adc22\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:201;a:22:{s:2:\"id\";s:3:\"241\";s:5:\"title\";s:12:\"Bubble Morph\";s:5:\"alias\";s:11:\"bubblemorph\";s:3:\"zip\";s:15:\"bubblemorph.zip\";s:3:\"uid\";s:32:\"1102d6f5460ab82cb612cbe9f1d9514b\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"<span class=\"ttm_content\">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:202;a:22:{s:2:\"id\";s:3:\"242\";s:5:\"title\";s:16:\"Distortion AddOn\";s:5:\"alias\";s:15:\"distortionaddon\";s:3:\"zip\";s:19:\"distortionaddon.zip\";s:3:\"uid\";s:32:\"0ad46c9929bb2fa6316f1e6ced301aaf\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:203;a:22:{s:2:\"id\";s:3:\"243\";s:5:\"title\";s:10:\"Club Flyer\";s:5:\"alias\";s:9:\"clubflyer\";s:3:\"zip\";s:13:\"clubflyer.zip\";s:3:\"uid\";s:32:\"dab73b9904d0e643a35b0475980998bd\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:187:\"[{\"path\":\"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php\",\"name\":\"Exploding Layers AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:204;a:23:{s:2:\"id\";s:3:\"244\";s:5:\"title\";s:16:\"Paintbrush AddOn\";s:5:\"alias\";s:15:\"paintbrushaddon\";s:3:\"zip\";s:19:\"paintbrushaddon.zip\";s:3:\"uid\";s:32:\"c85c48a6742b4bf72a2590cc1b50f6a0\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:205;a:25:{s:2:\"id\";s:3:\"246\";s:5:\"title\";s:15:\"Parallax Header\";s:5:\"alias\";s:15:\"parallax_header\";s:3:\"zip\";s:25:\"packs/parallax_header.zip\";s:3:\"uid\";s:32:\"32bf4a0f5136853bd6bd366275a7a60b\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:206;a:25:{s:2:\"id\";s:3:\"247\";s:5:\"title\";s:16:\"Parallax Content\";s:5:\"alias\";s:16:\"parallax_content\";s:3:\"zip\";s:26:\"packs/parallax_content.zip\";s:3:\"uid\";s:32:\"a25c5fb8f74757476ab4dc038e56f90d\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:207;a:25:{s:2:\"id\";s:3:\"248\";s:5:\"title\";s:15:\"Parallax Footer\";s:5:\"alias\";s:15:\"parallax_footer\";s:3:\"zip\";s:25:\"packs/parallax_footer.zip\";s:3:\"uid\";s:32:\"665dff9ea6eaf162a2a1f160f51a9ddb\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:208;a:25:{s:2:\"id\";s:3:\"250\";s:5:\"title\";s:12:\"Le Chef Menu\";s:5:\"alias\";s:12:\"le-chef-menu\";s:3:\"zip\";s:22:\"packs/le-chef-menu.zip\";s:3:\"uid\";s:32:\"2f2a6a333431fefe4a7b3b6a982b2ff5\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:209;a:25:{s:2:\"id\";s:3:\"251\";s:5:\"title\";s:14:\"Le Chef Header\";s:5:\"alias\";s:14:\"le-chef-header\";s:3:\"zip\";s:24:\"packs/le-chef-header.zip\";s:3:\"uid\";s:32:\"06450ca3be5a4a8959f3752ab974e574\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:210;a:25:{s:2:\"id\";s:3:\"252\";s:5:\"title\";s:18:\"Le Chef Philosophy\";s:5:\"alias\";s:18:\"le-chef-philosophy\";s:3:\"zip\";s:28:\"packs/le-chef-philosophy.zip\";s:3:\"uid\";s:32:\"a532fd029addeb18106e751409b8e20a\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:211;a:25:{s:2:\"id\";s:3:\"253\";s:5:\"title\";s:12:\"Le Chef Food\";s:5:\"alias\";s:12:\"le-chef-food\";s:3:\"zip\";s:22:\"packs/le-chef-food.zip\";s:3:\"uid\";s:32:\"cd4b6a2cb5de2dd20a0e8ba0c35451df\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:212;a:25:{s:2:\"id\";s:3:\"254\";s:5:\"title\";s:16:\"Le Chef La Carte\";s:5:\"alias\";s:16:\"le-chef-la-carte\";s:3:\"zip\";s:26:\"packs/le-chef-la-carte.zip\";s:3:\"uid\";s:32:\"6f312749679c3ba52c41189a6b8bf729\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:213;a:25:{s:2:\"id\";s:3:\"255\";s:5:\"title\";s:14:\"Le Chef Footer\";s:5:\"alias\";s:14:\"le-chef-footer\";s:3:\"zip\";s:24:\"packs/le-chef-footer.zip\";s:3:\"uid\";s:32:\"12fc241e8e5b9e5df9758c43448e2907\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:214;a:22:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:20:\"News Magazine Slider\";s:5:\"alias\";s:20:\"news-magazine-slider\";s:3:\"zip\";s:24:\"news-magazine-slider.zip\";s:3:\"uid\";s:32:\"31f2c1506babb1fef459401f051d2d52\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/news-magazine-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:215;a:23:{s:2:\"id\";s:3:\"257\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:18:\"real-estate-slider\";s:3:\"zip\";s:22:\"real-estate-slider.zip\";s:3:\"uid\";s:32:\"739ce6336e46815094387c9448e6c804\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/real-estate-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:216;a:22:{s:2:\"id\";s:3:\"258\";s:5:\"title\";s:14:\"Fashion Header\";s:5:\"alias\";s:14:\"fashion-header\";s:3:\"zip\";s:18:\"fashion-header.zip\";s:3:\"uid\";s:32:\"24ece4e7f4d31cd90377c62abbd9e25a\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/fashion-shop-header-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:254:\"<span class=\"ttm_content\">The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique \"Bubble Morph\" effect makes this module stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:217;a:22:{s:2:\"id\";s:3:\"259\";s:5:\"title\";s:14:\"Seasonal Offer\";s:5:\"alias\";s:13:\"seasonaloffer\";s:3:\"zip\";s:17:\"seasonaloffer.zip\";s:3:\"uid\";s:32:\"caf2f17f8fd64f2f89dcb3c8dd238457\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/seasonal-offer-christmas-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:218;a:26:{s:2:\"id\";s:3:\"261\";s:5:\"title\";s:18:\"Barber Shop Header\";s:5:\"alias\";s:18:\"barber-shop-header\";s:3:\"zip\";s:28:\"packs/barber-shop-header.zip\";s:3:\"uid\";s:32:\"71c995d36d39a0e8a04cffdf753f2ba2\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:219;a:26:{s:2:\"id\";s:3:\"262\";s:5:\"title\";s:23:\"Barber Shop Mobile Menu\";s:5:\"alias\";s:23:\"barber-shop-mobile-menu\";s:3:\"zip\";s:33:\"packs/barber-shop-mobile-menu.zip\";s:3:\"uid\";s:32:\"762c6fb5c6306f37becb1e55773c2592\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:220;a:26:{s:2:\"id\";s:3:\"263\";s:5:\"title\";s:24:\"Barber Shop First Screen\";s:5:\"alias\";s:24:\"barber-shop-first-screen\";s:3:\"zip\";s:34:\"packs/barber-shop-first-screen.zip\";s:3:\"uid\";s:32:\"acf70bfd64cff2c3c2ea5585223575da\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:221;a:26:{s:2:\"id\";s:3:\"264\";s:5:\"title\";s:17:\"Barber Shop About\";s:5:\"alias\";s:17:\"barber-shop-about\";s:3:\"zip\";s:27:\"packs/barber-shop-about.zip\";s:3:\"uid\";s:32:\"bc8b63cfc7f8c34173b4fd5b082fc05a\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:222;a:26:{s:2:\"id\";s:3:\"265\";s:5:\"title\";s:20:\"Barber Shop Services\";s:5:\"alias\";s:20:\"barber-shop-services\";s:3:\"zip\";s:30:\"packs/barber-shop-services.zip\";s:3:\"uid\";s:32:\"d65121d6f84fabd812a2b621b768e10e\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:223;a:26:{s:2:\"id\";s:3:\"266\";s:5:\"title\";s:19:\"Barber Shop Barbers\";s:5:\"alias\";s:19:\"barber-shop-barbers\";s:3:\"zip\";s:29:\"packs/barber-shop-barbers.zip\";s:3:\"uid\";s:32:\"003e9fec9693072119c8f8d8b6690c4d\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:224;a:26:{s:2:\"id\";s:3:\"267\";s:5:\"title\";s:20:\"Barber Shop Contacts\";s:5:\"alias\";s:20:\"barber-shop-contacts\";s:3:\"zip\";s:30:\"packs/barber-shop-contacts.zip\";s:3:\"uid\";s:32:\"cdcc08f5d6c90dbcfd0502bda2401643\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:225;a:26:{s:2:\"id\";s:3:\"268\";s:5:\"title\";s:18:\"Barber Shop Footer\";s:5:\"alias\";s:18:\"barber-shop-footer\";s:3:\"zip\";s:28:\"packs/barber-shop-footer.zip\";s:3:\"uid\";s:32:\"26ca5ae0de7cdbb2ca19348b6e01eda0\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:226;a:23:{s:2:\"id\";s:3:\"269\";s:5:\"title\";s:12:\"Fitness Club\";s:5:\"alias\";s:21:\"fitness-club-template\";s:3:\"zip\";s:25:\"fitness-club-template.zip\";s:3:\"uid\";s:32:\"14ea10d68d6aad1df62b3becf71df754\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/fitness-club-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:223:\"<span class=\"ttm_content\">The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:227;a:22:{s:2:\"id\";s:3:\"270\";s:5:\"title\";s:13:\"Soccer School\";s:5:\"alias\";s:13:\"soccer-school\";s:3:\"zip\";s:17:\"soccer-school.zip\";s:3:\"uid\";s:32:\"9906b48812aff67097f990eeee42dd41\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/soccer-club-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:228;a:23:{s:2:\"id\";s:3:\"271\";s:5:\"title\";s:10:\"Music Band\";s:5:\"alias\";s:19:\"music-band-template\";s:3:\"zip\";s:23:\"music-band-template.zip\";s:3:\"uid\";s:32:\"91e79657bf1b1812f8114a00ab8e0eb4\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/music-band-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.8.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:229;a:22:{s:2:\"id\";s:3:\"272\";s:5:\"title\";s:15:\"Restaurant Menu\";s:5:\"alias\";s:15:\"restaurant-menu\";s:3:\"zip\";s:19:\"restaurant-menu.zip\";s:3:\"uid\";s:32:\"078809cffb21b6c4d3f5aaa2daeb193d\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/restaurant-menu-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:208:\"<span class=\"ttm_content\">The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:230;a:22:{s:2:\"id\";s:3:\"273\";s:5:\"title\";s:16:\"Cinematic Slider\";s:5:\"alias\";s:16:\"cinematic-slider\";s:3:\"zip\";s:20:\"cinematic-slider.zip\";s:3:\"uid\";s:32:\"c53e7dcbb6b656ae7b4c91d333589838\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/cinematic-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:138:\"<span class=\"ttm_content\">Bold texts and a cinematic transition effect make this slider stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:231;a:22:{s:2:\"id\";s:3:\"274\";s:5:\"title\";s:17:\"3D Parallax Cubes\";s:5:\"alias\";s:17:\"3d-parallax-cubes\";s:3:\"zip\";s:21:\"3d-parallax-cubes.zip\";s:3:\"uid\";s:32:\"c5b809a1829f8f809c9a768cd3d6b3cb\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/3d-parallax-cubes-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">This amazing 3D cubes parallax effect can be an eye-opening intro for your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:232;a:25:{s:2:\"id\";s:3:\"276\";s:5:\"title\";s:13:\"Medicare Menu\";s:5:\"alias\";s:13:\"medicare-menu\";s:3:\"zip\";s:23:\"packs/medicare-menu.zip\";s:3:\"uid\";s:32:\"0e4ca8fc281e20251b3fffa19d470fed\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:233;a:25:{s:2:\"id\";s:3:\"277\";s:5:\"title\";s:15:\"Medicare Header\";s:5:\"alias\";s:15:\"medicare-header\";s:3:\"zip\";s:25:\"packs/medicare-header.zip\";s:3:\"uid\";s:32:\"03e8ade247d8c96f548bc0515f34043f\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:234;a:25:{s:2:\"id\";s:3:\"278\";s:5:\"title\";s:14:\"Medicare About\";s:5:\"alias\";s:14:\"medicare-about\";s:3:\"zip\";s:24:\"packs/medicare-about.zip\";s:3:\"uid\";s:32:\"a3ab9e89155ef2542820343f30b29f72\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:235;a:25:{s:2:\"id\";s:3:\"279\";s:5:\"title\";s:18:\"Medicare Highlight\";s:5:\"alias\";s:18:\"medicare-highlight\";s:3:\"zip\";s:28:\"packs/medicare-highlight.zip\";s:3:\"uid\";s:32:\"c3c8a74e5402489f1a85a0c83890ef1f\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:236;a:25:{s:2:\"id\";s:3:\"280\";s:5:\"title\";s:17:\"Medicare Services\";s:5:\"alias\";s:17:\"medicare-services\";s:3:\"zip\";s:27:\"packs/medicare-services.zip\";s:3:\"uid\";s:32:\"8869b0834d4649dcc3221bed65980806\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:237;a:25:{s:2:\"id\";s:3:\"281\";s:5:\"title\";s:16:\"Medicare Doctors\";s:5:\"alias\";s:16:\"medicare-doctors\";s:3:\"zip\";s:26:\"packs/medicare-doctors.zip\";s:3:\"uid\";s:32:\"2c9d57afd64244b5f7e30b0d87c842f9\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:238;a:25:{s:2:\"id\";s:3:\"282\";s:5:\"title\";s:17:\"Medicare Research\";s:5:\"alias\";s:17:\"medicare-research\";s:3:\"zip\";s:27:\"packs/medicare-research.zip\";s:3:\"uid\";s:32:\"31e84a91fc8b8d5296e715e539a076d0\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:239;a:25:{s:2:\"id\";s:3:\"283\";s:5:\"title\";s:19:\"Medicare Why Choose\";s:5:\"alias\";s:18:\"medicare-whychoose\";s:3:\"zip\";s:28:\"packs/medicare-whychoose.zip\";s:3:\"uid\";s:32:\"6dad61c672127de9e35884caa45d49a0\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:240;a:25:{s:2:\"id\";s:3:\"284\";s:5:\"title\";s:16:\"Medicare Contact\";s:5:\"alias\";s:16:\"medicare-contact\";s:3:\"zip\";s:26:\"packs/medicare-contact.zip\";s:3:\"uid\";s:32:\"89bc35ad8beb62a149c42262ae49a270\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:241;a:25:{s:2:\"id\";s:3:\"285\";s:5:\"title\";s:15:\"Medicare Footer\";s:5:\"alias\";s:15:\"medicare-footer\";s:3:\"zip\";s:25:\"packs/medicare-footer.zip\";s:3:\"uid\";s:32:\"ccf63e5233b3d63009e5ee90db51b37b\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:242;a:25:{s:2:\"id\";s:3:\"287\";s:5:\"title\";s:11:\"Coffee Menu\";s:5:\"alias\";s:11:\"coffee-menu\";s:3:\"zip\";s:21:\"packs/coffee-menu.zip\";s:3:\"uid\";s:32:\"81195cad7be3f5180a267b34ce8cf966\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:243;a:25:{s:2:\"id\";s:3:\"288\";s:5:\"title\";s:13:\"Coffee Header\";s:5:\"alias\";s:13:\"coffee-header\";s:3:\"zip\";s:23:\"packs/coffee-header.zip\";s:3:\"uid\";s:32:\"5eed8adb9d3ae12168ad4735ac63eb20\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:244;a:25:{s:2:\"id\";s:3:\"289\";s:5:\"title\";s:17:\"Coffee Philosophy\";s:5:\"alias\";s:17:\"coffee-philosophy\";s:3:\"zip\";s:27:\"packs/coffee-philosophy.zip\";s:3:\"uid\";s:32:\"76b5ccae3fa87fd0f991b87e7ae71c27\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:245;a:25:{s:2:\"id\";s:3:\"290\";s:5:\"title\";s:12:\"Coffee Carte\";s:5:\"alias\";s:12:\"coffee-carte\";s:3:\"zip\";s:22:\"packs/coffee-carte.zip\";s:3:\"uid\";s:32:\"470214ddd2cec585629fb79a0fd908d6\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:246;a:25:{s:2:\"id\";s:3:\"291\";s:5:\"title\";s:13:\"Coffee Teaser\";s:5:\"alias\";s:13:\"coffee-teaser\";s:3:\"zip\";s:23:\"packs/coffee-teaser.zip\";s:3:\"uid\";s:32:\"2ed868896c92a7bfb6431803c79e8486\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:247;a:25:{s:2:\"id\";s:3:\"292\";s:5:\"title\";s:14:\"Coffee Find Us\";s:5:\"alias\";s:13:\"coffee-findus\";s:3:\"zip\";s:23:\"packs/coffee-findus.zip\";s:3:\"uid\";s:32:\"96d3784473dfa64bce9e1e4101919927\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:248;a:25:{s:2:\"id\";s:3:\"293\";s:5:\"title\";s:13:\"Coffee Footer\";s:5:\"alias\";s:13:\"coffee-footer\";s:3:\"zip\";s:23:\"packs/coffee-footer.zip\";s:3:\"uid\";s:32:\"6027c25e87a5fe7fd8727a51c0967915\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:249;a:26:{s:2:\"id\";s:3:\"295\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:17:\"minimal-portfolio\";s:3:\"zip\";s:27:\"packs/minimal-portfolio.zip\";s:3:\"uid\";s:32:\"183b97b301d5ff0b171c067a87c8a3f5\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:250;a:26:{s:2:\"id\";s:3:\"296\";s:5:\"title\";s:23:\"Minimal Portfolio Modal\";s:5:\"alias\";s:23:\"minimal-portfolio-modal\";s:3:\"zip\";s:33:\"packs/minimal-portfolio-modal.zip\";s:3:\"uid\";s:32:\"6874e6cec3663670f209a8d8a4f26b16\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:251;a:25:{s:2:\"id\";s:3:\"298\";s:5:\"title\";s:11:\"Angled Menu\";s:5:\"alias\";s:11:\"angled-menu\";s:3:\"zip\";s:21:\"packs/angled-menu.zip\";s:3:\"uid\";s:32:\"2fe0c4682d1231ee3918be9e4fcb1837\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:252;a:25:{s:2:\"id\";s:3:\"299\";s:5:\"title\";s:13:\"Angled Header\";s:5:\"alias\";s:13:\"angled-header\";s:3:\"zip\";s:23:\"packs/angled-header.zip\";s:3:\"uid\";s:32:\"09462601d4edca8dff899de6f666dc47\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:253;a:25:{s:2:\"id\";s:3:\"300\";s:5:\"title\";s:11:\"Angled News\";s:5:\"alias\";s:11:\"angled-news\";s:3:\"zip\";s:21:\"packs/angled-news.zip\";s:3:\"uid\";s:32:\"b315105763ed91214cb2f0ac12615729\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:254;a:25:{s:2:\"id\";s:3:\"301\";s:5:\"title\";s:15:\"Angled Services\";s:5:\"alias\";s:15:\"angled-services\";s:3:\"zip\";s:25:\"packs/angled-services.zip\";s:3:\"uid\";s:32:\"7605651c1487e1a6c32edc70017be8ad\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:255;a:25:{s:2:\"id\";s:3:\"302\";s:5:\"title\";s:14:\"Angled Success\";s:5:\"alias\";s:14:\"angled-success\";s:3:\"zip\";s:24:\"packs/angled-success.zip\";s:3:\"uid\";s:32:\"9e3fa974a42ecf80e1ec6ff991fca430\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:256;a:25:{s:2:\"id\";s:3:\"303\";s:5:\"title\";s:13:\"Angled Footer\";s:5:\"alias\";s:13:\"angled-footer\";s:3:\"zip\";s:23:\"packs/angled-footer.zip\";s:3:\"uid\";s:32:\"aed4eaa2f7883351ba9c9947feef153e\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:257;a:25:{s:2:\"id\";s:3:\"304\";s:5:\"title\";s:20:\"Angled Content Modal\";s:5:\"alias\";s:20:\"angled-content-modal\";s:3:\"zip\";s:30:\"packs/angled-content-modal.zip\";s:3:\"uid\";s:32:\"4ddc74515fdf84f974217e4ed47a7c66\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:264;a:23:{s:2:\"id\";s:3:\"312\";s:5:\"title\";s:24:\"Retouch Before and After\";s:5:\"alias\";s:7:\"Retouch\";s:3:\"zip\";s:11:\"Retouch.zip\";s:3:\"uid\";s:32:\"58894991f1abd8b448c8d353b1b5fe76\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/retouch-before-after-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">The Retouch Slider is the perfect way to compare your photos before and after retouching.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:265;a:22:{s:2:\"id\";s:3:\"313\";s:5:\"title\";s:11:\"Tech Slider\";s:5:\"alias\";s:11:\"tech-slider\";s:3:\"zip\";s:15:\"tech-slider.zip\";s:3:\"uid\";s:32:\"a98e2b264f00a1116d21808c6a543162\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/tech-showcase-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">This classic slider module with sleek device mockups features a smooth parallax effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:266;a:25:{s:2:\"id\";s:3:\"315\";s:5:\"title\";s:11:\"Peak Header\";s:5:\"alias\";s:11:\"peak-header\";s:3:\"zip\";s:21:\"packs/peak-header.zip\";s:3:\"uid\";s:32:\"b721bd612e9fbc5182418ad3fd7d0808\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:267;a:25:{s:2:\"id\";s:3:\"316\";s:5:\"title\";s:10:\"Peak About\";s:5:\"alias\";s:10:\"peak-about\";s:3:\"zip\";s:20:\"packs/peak-about.zip\";s:3:\"uid\";s:32:\"7e68b1012fb03490d45c7f79e8cb1b19\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:268;a:25:{s:2:\"id\";s:3:\"317\";s:5:\"title\";s:14:\"Peak Portfolio\";s:5:\"alias\";s:14:\"peak-portfolio\";s:3:\"zip\";s:24:\"packs/peak-portfolio.zip\";s:3:\"uid\";s:32:\"6198d1885ba9e95221c33e404f21bdbc\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:269;a:25:{s:2:\"id\";s:3:\"318\";s:5:\"title\";s:11:\"Peak Footer\";s:5:\"alias\";s:11:\"peak-footer\";s:3:\"zip\";s:21:\"packs/peak-footer.zip\";s:3:\"uid\";s:32:\"2dead6897ad3b3a709b380d81242f76b\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:270;a:26:{s:2:\"id\";s:3:\"320\";s:5:\"title\";s:17:\"Portfolio Welcome\";s:5:\"alias\";s:17:\"portfolio-welcome\";s:3:\"zip\";s:27:\"packs/portfolio-welcome.zip\";s:3:\"uid\";s:32:\"97336b8785e4a7b27facaf1547e0464d\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:271;a:26:{s:2:\"id\";s:3:\"321\";s:5:\"title\";s:15:\"Portfolio About\";s:5:\"alias\";s:15:\"portfolio-about\";s:3:\"zip\";s:25:\"packs/portfolio-about.zip\";s:3:\"uid\";s:32:\"5d3a4724fd453de5313ceb6696c1db62\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:272;a:26:{s:2:\"id\";s:3:\"322\";s:5:\"title\";s:21:\"Portfolio Works Title\";s:5:\"alias\";s:21:\"portfolio-works-title\";s:3:\"zip\";s:31:\"packs/portfolio-works-title.zip\";s:3:\"uid\";s:32:\"cbb5c6e875cc1f25b463fdf89cabef28\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:273;a:26:{s:2:\"id\";s:3:\"323\";s:5:\"title\";s:23:\"Portfolio Works Content\";s:5:\"alias\";s:23:\"portfolio-works-content\";s:3:\"zip\";s:33:\"packs/portfolio-works-content.zip\";s:3:\"uid\";s:32:\"5c87311128c7794ffa6ee07ea0648082\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:274;a:26:{s:2:\"id\";s:3:\"324\";s:5:\"title\";s:18:\"Portfolio Contacts\";s:5:\"alias\";s:18:\"portfolio-contacts\";s:3:\"zip\";s:28:\"packs/portfolio-contacts.zip\";s:3:\"uid\";s:32:\"bd81feffad83b69218f7e837478038e5\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:275;a:26:{s:2:\"id\";s:3:\"326\";s:5:\"title\";s:18:\"App Studio Welcome\";s:5:\"alias\";s:18:\"App-Studio-Welcome\";s:3:\"zip\";s:28:\"packs/App-Studio-Welcome.zip\";s:3:\"uid\";s:32:\"2ce0f3c54214b04e6c3a9becfd59730c\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:276;a:26:{s:2:\"id\";s:3:\"327\";s:5:\"title\";s:19:\"App Studio Services\";s:5:\"alias\";s:19:\"App-Studio-Services\";s:3:\"zip\";s:29:\"packs/App-Studio-Services.zip\";s:3:\"uid\";s:32:\"5df7776271ec69d2f9edaa6b842715a9\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:277;a:26:{s:2:\"id\";s:3:\"328\";s:5:\"title\";s:16:\"App Studio About\";s:5:\"alias\";s:16:\"App-Studio-About\";s:3:\"zip\";s:26:\"packs/App-Studio-About.zip\";s:3:\"uid\";s:32:\"af8b84dc116c629df7bd89fc69271a2e\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:278;a:26:{s:2:\"id\";s:3:\"329\";s:5:\"title\";s:19:\"App Studio Contacts\";s:5:\"alias\";s:19:\"App-Studio-Contacts\";s:3:\"zip\";s:29:\"packs/App-Studio-Contacts.zip\";s:3:\"uid\";s:32:\"afbbd2214c983d314f3215a00db9198d\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:279;a:22:{s:2:\"id\";s:3:\"330\";s:5:\"title\";s:14:\"Cube Animation\";s:5:\"alias\";s:14:\"cube-animation\";s:3:\"zip\";s:18:\"cube-animation.zip\";s:3:\"uid\";s:32:\"c03dd3cfc60479dfc6d79ddb64fa0ec5\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/cube-animation-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">A modern slider with text elements, cube animations and a striking call to action button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:280;a:26:{s:2:\"id\";s:3:\"332\";s:5:\"title\";s:10:\"Basic Menu\";s:5:\"alias\";s:10:\"basic-menu\";s:3:\"zip\";s:20:\"packs/basic-menu.zip\";s:3:\"uid\";s:32:\"39277f53b2cb5ac644a1649b47c37270\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:281;a:26:{s:2:\"id\";s:3:\"333\";s:5:\"title\";s:12:\"Basic Header\";s:5:\"alias\";s:12:\"basic-header\";s:3:\"zip\";s:22:\"packs/basic-header.zip\";s:3:\"uid\";s:32:\"ad7a32dbccb0bdf9de64cf2adfa950a2\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:282;a:26:{s:2:\"id\";s:3:\"334\";s:5:\"title\";s:13:\"Basic Content\";s:5:\"alias\";s:13:\"basic-content\";s:3:\"zip\";s:23:\"packs/basic-content.zip\";s:3:\"uid\";s:32:\"0b12f3b183a3c8206e3a7b28d2d93108\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:283;a:26:{s:2:\"id\";s:3:\"335\";s:5:\"title\";s:14:\"Basic Carousel\";s:5:\"alias\";s:14:\"basic-carousel\";s:3:\"zip\";s:24:\"packs/basic-carousel.zip\";s:3:\"uid\";s:32:\"e4abb5c6d5cf914530575a982d3dfc14\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:284;a:26:{s:2:\"id\";s:3:\"336\";s:5:\"title\";s:13:\"Basic Callout\";s:5:\"alias\";s:13:\"basic-callout\";s:3:\"zip\";s:23:\"packs/basic-callout.zip\";s:3:\"uid\";s:32:\"2ccc208b9322f5435d0f4ff64c6d9dab\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:285;a:26:{s:2:\"id\";s:3:\"337\";s:5:\"title\";s:10:\"Basic Grid\";s:5:\"alias\";s:10:\"basic-grid\";s:3:\"zip\";s:20:\"packs/basic-grid.zip\";s:3:\"uid\";s:32:\"3cb4b41d2992eba012921b8fb7c96daa\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:286;a:26:{s:2:\"id\";s:3:\"338\";s:5:\"title\";s:17:\"Basic Video Block\";s:5:\"alias\";s:17:\"basic-video-block\";s:3:\"zip\";s:27:\"packs/basic-video-block.zip\";s:3:\"uid\";s:32:\"e7c1d42b21819741f3e72c1325dae5ed\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:287;a:26:{s:2:\"id\";s:3:\"339\";s:5:\"title\";s:12:\"Basic Footer\";s:5:\"alias\";s:12:\"basic-footer\";s:3:\"zip\";s:22:\"packs/basic-footer.zip\";s:3:\"uid\";s:32:\"ed8f6a554775ebace558af2f4f2dcbac\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:288;a:26:{s:2:\"id\";s:3:\"340\";s:5:\"title\";s:14:\"Basic Lightbox\";s:5:\"alias\";s:14:\"basic-lightbox\";s:3:\"zip\";s:24:\"packs/basic-lightbox.zip\";s:3:\"uid\";s:32:\"e4b025b300b1a8f417d04eb80113fac2\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:289;a:22:{s:2:\"id\";s:3:\"341\";s:5:\"title\";s:13:\"Nature Slider\";s:5:\"alias\";s:13:\"nature-slider\";s:3:\"zip\";s:17:\"nature-slider.zip\";s:3:\"uid\";s:32:\"eef1a4584ec1c3b8c26c305cca44e805\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/nature-explorer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:151:\"<span class=\"ttm_content\">The Nature Explorer Slider Template uses the Distortion and Particle Effects Add-Ons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:290;a:23:{s:2:\"id\";s:3:\"342\";s:5:\"title\";s:11:\"Art Gallery\";s:5:\"alias\";s:11:\"art-gallery\";s:3:\"zip\";s:15:\"art-gallery.zip\";s:3:\"uid\";s:32:\"b8c5095ae3407337e6e5b2a8515e7d6e\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/art-gallery-slider-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern slider with large, geometric elements and interesting mask animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:291;a:26:{s:2:\"id\";s:3:\"344\";s:5:\"title\";s:19:\"Construction Header\";s:5:\"alias\";s:19:\"Construction-Header\";s:3:\"zip\";s:29:\"packs/Construction-Header.zip\";s:3:\"uid\";s:32:\"5c77de774b8f5487c1276c4a7b3dc80c\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:292;a:26:{s:2:\"id\";s:3:\"345\";s:5:\"title\";s:17:\"Construction Home\";s:5:\"alias\";s:17:\"Construction-Home\";s:3:\"zip\";s:27:\"packs/Construction-Home.zip\";s:3:\"uid\";s:32:\"fcb277f0c07dad270d2a7cef4431bef8\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:293;a:26:{s:2:\"id\";s:3:\"346\";s:5:\"title\";s:21:\"Construction Projects\";s:5:\"alias\";s:21:\"Construction-Projects\";s:3:\"zip\";s:31:\"packs/Construction-Projects.zip\";s:3:\"uid\";s:32:\"0c847173c3739f79778dc2c0fc9704e4\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:294;a:26:{s:2:\"id\";s:3:\"347\";s:5:\"title\";s:20:\"Construction History\";s:5:\"alias\";s:20:\"Construction-History\";s:3:\"zip\";s:30:\"packs/Construction-History.zip\";s:3:\"uid\";s:32:\"758da120c4b6c5606692faf0aa43aac6\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:295;a:26:{s:2:\"id\";s:3:\"348\";s:5:\"title\";s:21:\"Construction Services\";s:5:\"alias\";s:21:\"Construction-Services\";s:3:\"zip\";s:31:\"packs/Construction-Services.zip\";s:3:\"uid\";s:32:\"5ad5b841c1d89e97ddbf972c8b11abd4\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:296;a:26:{s:2:\"id\";s:3:\"349\";s:5:\"title\";s:21:\"Construction Contacts\";s:5:\"alias\";s:21:\"Construction-Contacts\";s:3:\"zip\";s:31:\"packs/Construction-Contacts.zip\";s:3:\"uid\";s:32:\"b8c3c34046bb91ebb243e4da64745d37\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:297;a:23:{s:2:\"id\";s:3:\"350\";s:5:\"title\";s:22:\"Classic Cars Evolution\";s:5:\"alias\";s:22:\"Classic-Cars-Evolution\";s:3:\"zip\";s:26:\"Classic-Cars-Evolution.zip\";s:3:\"uid\";s:32:\"7061757f128fd624b0227715dab73b74\";s:3:\"img\";s:33:\"Classic-Cars-Evolution/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/classic-cars-before-after-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is a great example of our popular before & after Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:298;a:23:{s:2:\"id\";s:3:\"351\";s:5:\"title\";s:21:\"404 Error Space Theme\";s:5:\"alias\";s:21:\"404-Error-Space-Theme\";s:3:\"zip\";s:25:\"404-Error-Space-Theme.zip\";s:3:\"uid\";s:32:\"6412adc7ec025826328e40e552a14e1e\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";s:7:\"preview\";s:49:\"https://revolution.themepunch.com/404-error-page/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is the perfect way to make your error page more beautiful.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:299;a:25:{s:2:\"id\";s:3:\"353\";s:5:\"title\";s:17:\"Landing Page Hero\";s:5:\"alias\";s:17:\"landing-page-hero\";s:3:\"zip\";s:27:\"packs/landing-page-hero.zip\";s:3:\"uid\";s:32:\"d328635caa20da7ee8a3ab687f8656ff\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:300;a:26:{s:2:\"id\";s:3:\"354\";s:5:\"title\";s:21:\"Landing Page Features\";s:5:\"alias\";s:21:\"landing-page-features\";s:3:\"zip\";s:31:\"packs/landing-page-features.zip\";s:3:\"uid\";s:32:\"6552bc72abace10918a64866d9bb79c1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:301;a:26:{s:2:\"id\";s:3:\"355\";s:5:\"title\";s:20:\"Landing Page Callout\";s:5:\"alias\";s:20:\"landing-page-callout\";s:3:\"zip\";s:30:\"packs/landing-page-callout.zip\";s:3:\"uid\";s:32:\"c5b101ea5471e7409ae7effa8d45fbcf\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:302;a:26:{s:2:\"id\";s:3:\"356\";s:5:\"title\";s:20:\"Landing Page Content\";s:5:\"alias\";s:20:\"landing-page-content\";s:3:\"zip\";s:30:\"packs/landing-page-content.zip\";s:3:\"uid\";s:32:\"34da8057a6bb3677c9adf9f18ffc6cf0\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:303;a:25:{s:2:\"id\";s:3:\"357\";s:5:\"title\";s:25:\"Landing Page Testimonials\";s:5:\"alias\";s:25:\"landing-page-testimonials\";s:3:\"zip\";s:35:\"packs/landing-page-testimonials.zip\";s:3:\"uid\";s:32:\"a83606e311cd5115422d86f04890cbf1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:304;a:25:{s:2:\"id\";s:3:\"358\";s:5:\"title\";s:27:\"Landing Page Call to Action\";s:5:\"alias\";s:27:\"landing-page-call-to-action\";s:3:\"zip\";s:37:\"packs/landing-page-call-to-action.zip\";s:3:\"uid\";s:32:\"adfb456b27fa7eb6b1415d8f80836f05\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:305;a:25:{s:2:\"id\";s:3:\"359\";s:5:\"title\";s:17:\"Landing Page Help\";s:5:\"alias\";s:17:\"landing-page-help\";s:3:\"zip\";s:27:\"packs/landing-page-help.zip\";s:3:\"uid\";s:32:\"ca502431f9b7f6249d99b02464de2dd7\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:306;a:25:{s:2:\"id\";s:3:\"360\";s:5:\"title\";s:19:\"Landing Page Footer\";s:5:\"alias\";s:19:\"landing-page-footer\";s:3:\"zip\";s:29:\"packs/landing-page-footer.zip\";s:3:\"uid\";s:32:\"2a6afc371dbd60cb117f8a0f5d09eac9\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:307;a:25:{s:2:\"id\";s:3:\"361\";s:5:\"title\";s:24:\"Landing Page Price Modal\";s:5:\"alias\";s:24:\"landing-page-price-modal\";s:3:\"zip\";s:34:\"packs/landing-page-price-modal.zip\";s:3:\"uid\";s:32:\"a6c5c0430b46dd4e6e68416964a8c54d\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:316;a:26:{s:2:\"id\";s:3:\"372\";s:5:\"title\";s:16:\"Corporate Header\";s:5:\"alias\";s:16:\"Corporate-Header\";s:3:\"zip\";s:26:\"packs/Corporate-Header.zip\";s:3:\"uid\";s:32:\"04f868e3812a1681f00ab89580e5d1f8\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:317;a:26:{s:2:\"id\";s:3:\"373\";s:5:\"title\";s:24:\"Corporate Welcome Screen\";s:5:\"alias\";s:24:\"Corporate-Welcome-Screen\";s:3:\"zip\";s:34:\"packs/Corporate-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"052afe98ef819f7ace041dbbdb749639\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:318;a:26:{s:2:\"id\";s:3:\"374\";s:5:\"title\";s:15:\"Corporate About\";s:5:\"alias\";s:15:\"Corporate-About\";s:3:\"zip\";s:25:\"packs/Corporate-About.zip\";s:3:\"uid\";s:32:\"7bf5f8f6d4cc3016cea86289cb46e5b6\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:319;a:26:{s:2:\"id\";s:3:\"375\";s:5:\"title\";s:19:\"Corporate Portfolio\";s:5:\"alias\";s:19:\"Corporate-Portfolio\";s:3:\"zip\";s:29:\"packs/Corporate-Portfolio.zip\";s:3:\"uid\";s:32:\"612c2bd784fea81392dda1644a3c3cf3\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:320;a:26:{s:2:\"id\";s:3:\"376\";s:5:\"title\";s:15:\"Corporate Chart\";s:5:\"alias\";s:15:\"Corporate-Chart\";s:3:\"zip\";s:25:\"packs/Corporate-Chart.zip\";s:3:\"uid\";s:32:\"4d27d9b3b2cfcce750e526aafb322a9f\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:321;a:26:{s:2:\"id\";s:3:\"377\";s:5:\"title\";s:14:\"Corporate News\";s:5:\"alias\";s:14:\"Corporate-News\";s:3:\"zip\";s:24:\"packs/Corporate-News.zip\";s:3:\"uid\";s:32:\"bb65ed57a0d4db795d8b738f0a92f2d7\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:322;a:26:{s:2:\"id\";s:3:\"378\";s:5:\"title\";s:16:\"Corporate Hiring\";s:5:\"alias\";s:16:\"Corporate-Hiring\";s:3:\"zip\";s:26:\"packs/Corporate-Hiring.zip\";s:3:\"uid\";s:32:\"136cf1a91604e819089eb3573a6e100a\";s:3:\"img\";s:27:\"Corporate-Hiring/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:323;a:26:{s:2:\"id\";s:3:\"379\";s:5:\"title\";s:22:\"Corporate Testimonials\";s:5:\"alias\";s:22:\"Corporate-Testimonials\";s:3:\"zip\";s:32:\"packs/Corporate-Testimonials.zip\";s:3:\"uid\";s:32:\"b17aec0afdc31e37359cfa406164463c\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:324;a:26:{s:2:\"id\";s:3:\"380\";s:5:\"title\";s:15:\"Corporate Store\";s:5:\"alias\";s:15:\"Corporate-Store\";s:3:\"zip\";s:25:\"packs/Corporate-Store.zip\";s:3:\"uid\";s:32:\"6240b14620ddc634736716e0cdfdeb31\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:325;a:26:{s:2:\"id\";s:3:\"381\";s:5:\"title\";s:17:\"Corporate Support\";s:5:\"alias\";s:17:\"Corporate-Support\";s:3:\"zip\";s:27:\"packs/Corporate-Support.zip\";s:3:\"uid\";s:32:\"9424292a78076ce68c2faf587b26cdad\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:326;a:26:{s:2:\"id\";s:3:\"382\";s:5:\"title\";s:14:\"Corporate Team\";s:5:\"alias\";s:14:\"Corporate-Team\";s:3:\"zip\";s:24:\"packs/Corporate-Team.zip\";s:3:\"uid\";s:32:\"4fafe469b5a0a2545625c3f6d7ff3b9e\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:327;a:26:{s:2:\"id\";s:3:\"383\";s:5:\"title\";s:33:\"Corporate Selected Projects Title\";s:5:\"alias\";s:33:\"Corporate-Selected-Projects-Title\";s:3:\"zip\";s:43:\"packs/Corporate-Selected-Projects-Title.zip\";s:3:\"uid\";s:32:\"0ed3c41f51e6bf404c2fe179fa8d8ceb\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:328;a:26:{s:2:\"id\";s:3:\"384\";s:5:\"title\";s:27:\"Corporate Selected Projects\";s:5:\"alias\";s:27:\"Corporate-Selected-Projects\";s:3:\"zip\";s:37:\"packs/Corporate-Selected-Projects.zip\";s:3:\"uid\";s:32:\"1096c78d5f007f3900228a4092515e2e\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:329;a:26:{s:2:\"id\";s:3:\"385\";s:5:\"title\";s:17:\"Corporate Clients\";s:5:\"alias\";s:17:\"Corporate-Clients\";s:3:\"zip\";s:27:\"packs/Corporate-Clients.zip\";s:3:\"uid\";s:32:\"60fe3a311195bf4dba3e50bd1ab98574\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"14\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:330;a:26:{s:2:\"id\";s:3:\"386\";s:5:\"title\";s:20:\"Corporate Text Block\";s:5:\"alias\";s:20:\"Corporate-Text-Block\";s:3:\"zip\";s:30:\"packs/Corporate-Text-Block.zip\";s:3:\"uid\";s:32:\"93b68bb23d65fd1028b6b5f6d19b85b5\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"15\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:331;a:26:{s:2:\"id\";s:3:\"387\";s:5:\"title\";s:20:\"Corporate Mobile App\";s:5:\"alias\";s:20:\"Corporate-Mobile-App\";s:3:\"zip\";s:30:\"packs/Corporate-Mobile-App.zip\";s:3:\"uid\";s:32:\"e592369d233bea673403daa15c6e498a\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"16\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:332;a:26:{s:2:\"id\";s:3:\"388\";s:5:\"title\";s:18:\"Corporate Contacts\";s:5:\"alias\";s:18:\"Corporate-Contacts\";s:3:\"zip\";s:28:\"packs/Corporate-Contacts.zip\";s:3:\"uid\";s:32:\"91ae9488b54b7020f8ae9dfbfd6c563a\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"17\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:333;a:26:{s:2:\"id\";s:3:\"389\";s:5:\"title\";s:16:\"Corporate Footer\";s:5:\"alias\";s:16:\"Corporate-Footer\";s:3:\"zip\";s:26:\"packs/Corporate-Footer.zip\";s:3:\"uid\";s:32:\"a01df90af203f06194c1a18745d79861\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"18\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:334;a:26:{s:2:\"id\";s:3:\"390\";s:5:\"title\";s:23:\"Corporate Scroll To Top\";s:5:\"alias\";s:23:\"Corporate-Scroll-To-Top\";s:3:\"zip\";s:33:\"packs/Corporate-Scroll-To-Top.zip\";s:3:\"uid\";s:32:\"2d68f6e4590a9a445e6eb055dfee88ba\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"19\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:345;a:26:{s:2:\"id\";s:3:\"403\";s:5:\"title\";s:11:\"Brutal Menu\";s:5:\"alias\";s:11:\"brutal-menu\";s:3:\"zip\";s:21:\"packs/brutal-menu.zip\";s:3:\"uid\";s:32:\"04b21c7aee2479793336e964230d6e3f\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:346;a:26:{s:2:\"id\";s:3:\"404\";s:5:\"title\";s:11:\"Brutal Hero\";s:5:\"alias\";s:11:\"brutal-hero\";s:3:\"zip\";s:21:\"packs/brutal-hero.zip\";s:3:\"uid\";s:32:\"a342ad01054b97bac7980fdf9e275b34\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:347;a:26:{s:2:\"id\";s:3:\"405\";s:5:\"title\";s:12:\"Brutal About\";s:5:\"alias\";s:12:\"brutal-about\";s:3:\"zip\";s:22:\"packs/brutal-about.zip\";s:3:\"uid\";s:32:\"a3e1cd2e36c9a783c1932fdafe2e4434\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:348;a:26:{s:2:\"id\";s:3:\"406\";s:5:\"title\";s:16:\"Brutal Highlight\";s:5:\"alias\";s:16:\"brutal-highlight\";s:3:\"zip\";s:26:\"packs/brutal-highlight.zip\";s:3:\"uid\";s:32:\"b7f8522dcb4636467633bd3b14f4e3e9\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:349;a:26:{s:2:\"id\";s:3:\"407\";s:5:\"title\";s:15:\"Brutal Projects\";s:5:\"alias\";s:15:\"brutal-projects\";s:3:\"zip\";s:25:\"packs/brutal-projects.zip\";s:3:\"uid\";s:32:\"1a462e91373042193ca5d623dd8e8a47\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:350;a:26:{s:2:\"id\";s:3:\"408\";s:5:\"title\";s:15:\"Brutal Services\";s:5:\"alias\";s:15:\"brutal-services\";s:3:\"zip\";s:25:\"packs/brutal-services.zip\";s:3:\"uid\";s:32:\"cbeeb1e7a5c2842b155fe13acb7c165d\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:351;a:26:{s:2:\"id\";s:3:\"409\";s:5:\"title\";s:14:\"Brutal Callout\";s:5:\"alias\";s:14:\"brutal-callout\";s:3:\"zip\";s:24:\"packs/brutal-callout.zip\";s:3:\"uid\";s:32:\"31b6dafdb2dfb548152653e60df5a3bc\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:352;a:26:{s:2:\"id\";s:3:\"410\";s:5:\"title\";s:13:\"Brutal Footer\";s:5:\"alias\";s:13:\"brutal-footer\";s:3:\"zip\";s:23:\"packs/brutal-footer.zip\";s:3:\"uid\";s:32:\"07559f0c574e3dd95b2d40d72cbb01bc\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:353;a:26:{s:2:\"id\";s:3:\"412\";s:5:\"title\";s:13:\"Church Header\";s:5:\"alias\";s:13:\"Church-Header\";s:3:\"zip\";s:23:\"packs/Church-Header.zip\";s:3:\"uid\";s:32:\"c14289117e1e2b9ee716fb99146b2e03\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:354;a:26:{s:2:\"id\";s:3:\"413\";s:5:\"title\";s:22:\"Church Upcoming Events\";s:5:\"alias\";s:22:\"Church-Upcoming-Events\";s:3:\"zip\";s:32:\"packs/Church-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"056a26efddae92973fee4ee5cfa75f10\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:355;a:26:{s:2:\"id\";s:3:\"414\";s:5:\"title\";s:12:\"Church About\";s:5:\"alias\";s:12:\"Church-About\";s:3:\"zip\";s:22:\"packs/Church-About.zip\";s:3:\"uid\";s:32:\"8ef133f3f669f06380334a83e27eedbb\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:356;a:26:{s:2:\"id\";s:3:\"415\";s:5:\"title\";s:14:\"Church Pastors\";s:5:\"alias\";s:14:\"Church-Pastors\";s:3:\"zip\";s:24:\"packs/Church-Pastors.zip\";s:3:\"uid\";s:32:\"715edc0833a753b72350b8c974f86f94\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:357;a:26:{s:2:\"id\";s:3:\"416\";s:5:\"title\";s:20:\"Church Photo Gallery\";s:5:\"alias\";s:20:\"Church-Photo-Gallery\";s:3:\"zip\";s:30:\"packs/Church-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"d94808a97149cd5d3b3354a28409ffd7\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:358;a:26:{s:2:\"id\";s:3:\"417\";s:5:\"title\";s:16:\"Church Community\";s:5:\"alias\";s:16:\"Church-Community\";s:3:\"zip\";s:26:\"packs/Church-Community.zip\";s:3:\"uid\";s:32:\"2244e6a6d7a691653eae2d70765130a7\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:359;a:26:{s:2:\"id\";s:3:\"418\";s:5:\"title\";s:13:\"Church Sermon\";s:5:\"alias\";s:13:\"Church-Sermon\";s:3:\"zip\";s:23:\"packs/Church-Sermon.zip\";s:3:\"uid\";s:32:\"8fedf983bd55fff0f7a16d9f0a7e5408\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:360;a:26:{s:2:\"id\";s:3:\"419\";s:5:\"title\";s:15:\"Church Contacts\";s:5:\"alias\";s:15:\"Church-Contacts\";s:3:\"zip\";s:25:\"packs/Church-Contacts.zip\";s:3:\"uid\";s:32:\"0b1a6968e75868548fd98e435625c090\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:361;a:26:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:13:\"Church Footer\";s:5:\"alias\";s:13:\"Church-Footer\";s:3:\"zip\";s:23:\"packs/Church-Footer.zip\";s:3:\"uid\";s:32:\"29756685d3dc49e42edada43e6393b7b\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:362;a:26:{s:2:\"id\";s:3:\"422\";s:5:\"title\";s:19:\"Church Light Header\";s:5:\"alias\";s:19:\"Church-Light-Header\";s:3:\"zip\";s:29:\"packs/Church-Light-Header.zip\";s:3:\"uid\";s:32:\"81c00f4b52cf55214de919e3f13121fc\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:363;a:26:{s:2:\"id\";s:3:\"423\";s:5:\"title\";s:28:\"Church Light Upcoming Events\";s:5:\"alias\";s:28:\"Church-Light-Upcoming-Events\";s:3:\"zip\";s:38:\"packs/Church-Light-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"963a49f4be0557ac5f3ee61d256f5bda\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:364;a:26:{s:2:\"id\";s:3:\"424\";s:5:\"title\";s:18:\"Church Light About\";s:5:\"alias\";s:18:\"Church-Light-About\";s:3:\"zip\";s:28:\"packs/Church-Light-About.zip\";s:3:\"uid\";s:32:\"d46c8e8e6f80e6bfedb54f1cdc49e7e6\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:365;a:26:{s:2:\"id\";s:3:\"425\";s:5:\"title\";s:20:\"Church Light Pastors\";s:5:\"alias\";s:20:\"Church-Light-Pastors\";s:3:\"zip\";s:30:\"packs/Church-Light-Pastors.zip\";s:3:\"uid\";s:32:\"7cc3dec61556e2291d6f38c1ea5e983f\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:366;a:26:{s:2:\"id\";s:3:\"426\";s:5:\"title\";s:26:\"Church Light Photo Gallery\";s:5:\"alias\";s:26:\"Church-Light-Photo-Gallery\";s:3:\"zip\";s:36:\"packs/Church-Light-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"9e13100179b9b700b005693eeca57902\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:367;a:26:{s:2:\"id\";s:3:\"427\";s:5:\"title\";s:22:\"Church Light Community\";s:5:\"alias\";s:22:\"Church-Light-Community\";s:3:\"zip\";s:32:\"packs/Church-Light-Community.zip\";s:3:\"uid\";s:32:\"14fcc0d43d899fd96116bdbc57c7c5ea\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:368;a:26:{s:2:\"id\";s:3:\"428\";s:5:\"title\";s:19:\"Church Light Sermon\";s:5:\"alias\";s:19:\"Church-Light-Sermon\";s:3:\"zip\";s:29:\"packs/Church-Light-Sermon.zip\";s:3:\"uid\";s:32:\"fc30be7e703bc7b235665c36baa80e4e\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:369;a:26:{s:2:\"id\";s:3:\"429\";s:5:\"title\";s:21:\"Church Light Contacts\";s:5:\"alias\";s:21:\"Church-Light-Contacts\";s:3:\"zip\";s:31:\"packs/Church-Light-Contacts.zip\";s:3:\"uid\";s:32:\"ed83d8fa63ecb59cf42656068ecf8d25\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:370;a:26:{s:2:\"id\";s:3:\"430\";s:5:\"title\";s:19:\"Church Light Footer\";s:5:\"alias\";s:19:\"Church-Light-Footer\";s:3:\"zip\";s:29:\"packs/Church-Light-Footer.zip\";s:3:\"uid\";s:32:\"a168772865fd5dcf6229c9c6a49dff73\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:371;a:26:{s:2:\"id\";s:3:\"432\";s:5:\"title\";s:13:\"Rockable Menu\";s:5:\"alias\";s:13:\"rockable-menu\";s:3:\"zip\";s:23:\"packs/rockable-menu.zip\";s:3:\"uid\";s:32:\"92d18f7ff38f22ff411a4ef4d9f54934\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:372;a:26:{s:2:\"id\";s:3:\"433\";s:5:\"title\";s:13:\"Rockable Hero\";s:5:\"alias\";s:13:\"rockable-hero\";s:3:\"zip\";s:23:\"packs/rockable-hero.zip\";s:3:\"uid\";s:32:\"ba16b28d6bde95910cbce572bb251208\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:373;a:26:{s:2:\"id\";s:3:\"434\";s:5:\"title\";s:15:\"Rockable Lineup\";s:5:\"alias\";s:15:\"rockable-lineup\";s:3:\"zip\";s:25:\"packs/rockable-lineup.zip\";s:3:\"uid\";s:32:\"6631980112805533a0d328c37e56adbd\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:374;a:26:{s:2:\"id\";s:3:\"435\";s:5:\"title\";s:17:\"Rockable Lineup 2\";s:5:\"alias\";s:17:\"rockable-lineup-2\";s:3:\"zip\";s:27:\"packs/rockable-lineup-2.zip\";s:3:\"uid\";s:32:\"98bc41d982dc478edabff4aa99461dbc\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:375;a:26:{s:2:\"id\";s:3:\"436\";s:5:\"title\";s:22:\"Rockable Gallery Title\";s:5:\"alias\";s:22:\"rockable-gallery-title\";s:3:\"zip\";s:32:\"packs/rockable-gallery-title.zip\";s:3:\"uid\";s:32:\"da43a76f5bc77aa6efe158b00ab7cf0d\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:376;a:26:{s:2:\"id\";s:3:\"437\";s:5:\"title\";s:16:\"Rockable Gallery\";s:5:\"alias\";s:16:\"rockable-gallery\";s:3:\"zip\";s:26:\"packs/rockable-gallery.zip\";s:3:\"uid\";s:32:\"c12a144d6860bcf24e91d5b980ac22f1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:377;a:26:{s:2:\"id\";s:3:\"438\";s:5:\"title\";s:17:\"Rockable Sponsors\";s:5:\"alias\";s:17:\"rockable-sponsors\";s:3:\"zip\";s:27:\"packs/rockable-sponsors.zip\";s:3:\"uid\";s:32:\"1e40d4a810c23f8d5fe5cd5ca31ee20d\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:378;a:26:{s:2:\"id\";s:3:\"439\";s:5:\"title\";s:15:\"Rockable Footer\";s:5:\"alias\";s:15:\"rockable-footer\";s:3:\"zip\";s:25:\"packs/rockable-footer.zip\";s:3:\"uid\";s:32:\"a4a9952d5e56fc14366155e8ebfa432a\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:379;a:26:{s:2:\"id\";s:3:\"440\";s:5:\"title\";s:21:\"Rockable Detail Modal\";s:5:\"alias\";s:21:\"rockable-detail-modal\";s:3:\"zip\";s:31:\"packs/rockable-detail-modal.zip\";s:3:\"uid\";s:32:\"b51d918203ff7975a144a9f1be09f31b\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:380;a:26:{s:2:\"id\";s:3:\"441\";s:5:\"title\";s:23:\"Rockable Detail Modal 2\";s:5:\"alias\";s:23:\"rockable-detail-modal-2\";s:3:\"zip\";s:33:\"packs/rockable-detail-modal-2.zip\";s:3:\"uid\";s:32:\"dcf51ebb3d4a1dec94748a1e016c5ef7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:382;a:23:{s:2:\"id\";s:3:\"443\";s:5:\"title\";s:16:\"Isometric Slider\";s:5:\"alias\";s:16:\"isometric-slider\";s:3:\"zip\";s:20:\"isometric-slider.zip\";s:3:\"uid\";s:32:\"fb06051fcf6649a44f2292044e414a36\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/isometric-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:154:\"<span class=\"ttm_content\">A colorful, isometric slider template with fully customizable colors and screen content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:383;a:25:{s:2:\"id\";s:3:\"445\";s:5:\"title\";s:17:\"E-Commerce Slider\";s:5:\"alias\";s:17:\"E-Commerce-Slider\";s:3:\"zip\";s:27:\"packs/E-Commerce-Slider.zip\";s:3:\"uid\";s:32:\"1533cfd83c2ae122f23074e1ed77f256\";s:3:\"img\";s:28:\"E-Commerce-Slider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:384;a:25:{s:2:\"id\";s:3:\"446\";s:5:\"title\";s:23:\"E-Commerce Slider Modal\";s:5:\"alias\";s:23:\"E-Commerce-Slider-Modal\";s:3:\"zip\";s:33:\"packs/E-Commerce-Slider-Modal.zip\";s:3:\"uid\";s:32:\"825e05c3967515b92a75da017c68a863\";s:3:\"img\";s:34:\"E-Commerce-Slider-Modal/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:385;a:22:{s:2:\"id\";s:3:\"447\";s:5:\"title\";s:27:\"Woo Commerce Slider Dynamic\";s:5:\"alias\";s:27:\"Woo-Commerce-Slider-Dynamic\";s:3:\"zip\";s:31:\"Woo-Commerce-Slider-Dynamic.zip\";s:3:\"uid\";s:32:\"b8e2c64f3739e552c563c48c59f20fe7\";s:3:\"img\";s:38:\"Woo-Commerce-Slider-Dynamic/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the dynamic version that uses Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:386;a:26:{s:2:\"id\";s:3:\"449\";s:5:\"title\";s:15:\"Blooming Header\";s:5:\"alias\";s:15:\"blooming-header\";s:3:\"zip\";s:25:\"packs/blooming-header.zip\";s:3:\"uid\";s:32:\"aa2ee34fd8ed018945ba64e6913810e4\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:387;a:25:{s:2:\"id\";s:3:\"450\";s:5:\"title\";s:14:\"Blooming About\";s:5:\"alias\";s:14:\"blooming-about\";s:3:\"zip\";s:24:\"packs/blooming-about.zip\";s:3:\"uid\";s:32:\"dd7095e46fab2eb475d00480fd17a6ec\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:388;a:25:{s:2:\"id\";s:3:\"451\";s:5:\"title\";s:18:\"Blooming Portfolio\";s:5:\"alias\";s:18:\"blooming-portfolio\";s:3:\"zip\";s:28:\"packs/blooming-portfolio.zip\";s:3:\"uid\";s:32:\"c72ddcbb07b62982b8c21328a6383e22\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:389;a:25:{s:2:\"id\";s:3:\"452\";s:5:\"title\";s:22:\"Blooming Wedding Title\";s:5:\"alias\";s:22:\"blooming-wedding-title\";s:3:\"zip\";s:32:\"packs/blooming-wedding-title.zip\";s:3:\"uid\";s:32:\"4fcfb0b99289c12d014c67306bb7687b\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:390;a:25:{s:2:\"id\";s:3:\"453\";s:5:\"title\";s:25:\"Blooming Wedding Carousel\";s:5:\"alias\";s:25:\"blooming-wedding-carousel\";s:3:\"zip\";s:35:\"packs/blooming-wedding-carousel.zip\";s:3:\"uid\";s:32:\"1d1bb979dbfca8ba9d43da1c0f665339\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:391;a:25:{s:2:\"id\";s:3:\"454\";s:5:\"title\";s:21:\"Blooming Wedding Text\";s:5:\"alias\";s:21:\"blooming-wedding-text\";s:3:\"zip\";s:31:\"packs/blooming-wedding-text.zip\";s:3:\"uid\";s:32:\"326f2793294a739dd3aac3cc45332df8\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:392;a:25:{s:2:\"id\";s:3:\"455\";s:5:\"title\";s:22:\"Blooming Parties Title\";s:5:\"alias\";s:22:\"blooming-parties-title\";s:3:\"zip\";s:32:\"packs/blooming-parties-title.zip\";s:3:\"uid\";s:32:\"b47aae1b368d3c3d9017f260e6c6a547\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:393;a:25:{s:2:\"id\";s:3:\"456\";s:5:\"title\";s:25:\"Blooming Parties Carousel\";s:5:\"alias\";s:25:\"blooming-parties-carousel\";s:3:\"zip\";s:35:\"packs/blooming-parties-carousel.zip\";s:3:\"uid\";s:32:\"9f90a9da7b017aeee7f3b608cda066e6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:394;a:25:{s:2:\"id\";s:3:\"457\";s:5:\"title\";s:21:\"Blooming Parties Text\";s:5:\"alias\";s:21:\"blooming-parties-text\";s:3:\"zip\";s:31:\"packs/blooming-parties-text.zip\";s:3:\"uid\";s:32:\"66a47346cc639b8b9b9b5dfa1521b6ef\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:395;a:25:{s:2:\"id\";s:3:\"458\";s:5:\"title\";s:22:\"Blooming Funeral Title\";s:5:\"alias\";s:22:\"blooming-funeral-title\";s:3:\"zip\";s:32:\"packs/blooming-funeral-title.zip\";s:3:\"uid\";s:32:\"e9e77134472c33c56be442073f29d1fd\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:396;a:25:{s:2:\"id\";s:3:\"459\";s:5:\"title\";s:23:\"Blooming Funeral Slider\";s:5:\"alias\";s:23:\"blooming-funeral-slider\";s:3:\"zip\";s:33:\"packs/blooming-funeral-slider.zip\";s:3:\"uid\";s:32:\"d15090841c25c7c8f0e1b0987c0c0887\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:397;a:25:{s:2:\"id\";s:3:\"460\";s:5:\"title\";s:21:\"Blooming Funeral Text\";s:5:\"alias\";s:21:\"blooming-funeral-text\";s:3:\"zip\";s:31:\"packs/blooming-funeral-text.zip\";s:3:\"uid\";s:32:\"d7c80e246f31e3d2f4e5dc1656f133cc\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:398;a:25:{s:2:\"id\";s:3:\"461\";s:5:\"title\";s:16:\"Blooming Contact\";s:5:\"alias\";s:16:\"blooming-contact\";s:3:\"zip\";s:26:\"packs/blooming-contact.zip\";s:3:\"uid\";s:32:\"54280182bca86443e2648b3146f41e47\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:399;a:22:{s:2:\"id\";s:3:\"462\";s:5:\"title\";s:13:\"Particle Hero\";s:5:\"alias\";s:13:\"particle-hero\";s:3:\"zip\";s:17:\"particle-hero.zip\";s:3:\"uid\";s:32:\"3f422f4807bf9ef4cb15dade515dad00\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide6\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:120:\"<span class=\"ttm_content\">A Hero header module using the Particle Effect Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:400;a:22:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:17:\"Bubble Morph Hero\";s:5:\"alias\";s:17:\"bubble-morph-hero\";s:3:\"zip\";s:21:\"bubble-morph-hero.zip\";s:3:\"uid\";s:32:\"b47e6bcc1ae80393ff3f7388ed3b9f8f\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide5\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A Hero header module using the Bubble Morph Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:401;a:22:{s:2:\"id\";s:3:\"464\";s:5:\"title\";s:13:\"Parallax Hero\";s:5:\"alias\";s:13:\"parallax-hero\";s:3:\"zip\";s:17:\"parallax-hero.zip\";s:3:\"uid\";s:32:\"290e86534326ee118e96ae7ce0538fa2\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide4\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A parallax hero module with mouse move interaction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:402;a:22:{s:2:\"id\";s:3:\"465\";s:5:\"title\";s:10:\"Video Hero\";s:5:\"alias\";s:10:\"video-hero\";s:3:\"zip\";s:14:\"video-hero.zip\";s:3:\"uid\";s:32:\"f9e280015d3408bb0482e13fe753da8f\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:111:\"<span class=\"ttm_content\">A simple Hero header module with HTML5 video.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:403;a:22:{s:2:\"id\";s:3:\"466\";s:5:\"title\";s:14:\"Ken Burns Hero\";s:5:\"alias\";s:14:\"ken-burns-hero\";s:3:\"zip\";s:18:\"ken-burns-hero.zip\";s:3:\"uid\";s:32:\"d5f89e5f5b3991b995e2bfeb50cfe9f8\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A simple image background hero header module with a subtle Ken Burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:404;a:22:{s:2:\"id\";s:3:\"467\";s:5:\"title\";s:21:\"Basic Hero Collection\";s:5:\"alias\";s:21:\"basic-hero-collection\";s:3:\"zip\";s:25:\"basic-hero-collection.zip\";s:3:\"uid\";s:32:\"ff625c65e8aab4689fa56d5652279d51\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-hero-image-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A collection of WordPress Hero Headers with image, video, particles, parallax and more!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:405;a:22:{s:2:\"id\";s:3:\"468\";s:5:\"title\";s:19:\"Launching Very Soon\";s:5:\"alias\";s:19:\"launching-very-soon\";s:3:\"zip\";s:23:\"launching-very-soon.zip\";s:3:\"uid\";s:32:\"2da45cf2d9bec07e7183b3f7777986b9\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/launching-soon-countdown/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:166:\"<span class=\"ttm_content\">Rocket BOOST! A beautifully animated launching soon countdown module using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:406;a:22:{s:2:\"id\";s:3:\"469\";s:5:\"title\";s:18:\"Under Construction\";s:5:\"alias\";s:18:\"Under-Construction\";s:3:\"zip\";s:22:\"Under-Construction.zip\";s:3:\"uid\";s:32:\"4b12f9a82a5b48d45a707df93406eb5b\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/under-construction/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You will love this animated under construction landing page using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:407;a:22:{s:2:\"id\";s:3:\"470\";s:5:\"title\";s:15:\"Particle Effect\";s:5:\"alias\";s:15:\"Particle-Effect\";s:3:\"zip\";s:19:\"Particle-Effect.zip\";s:3:\"uid\";s:32:\"66cf4e514e83a6984903694fd587edb6\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/snow-particle-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">Get into a winter mood with our Snow Particle Scene for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:408;a:22:{s:2:\"id\";s:3:\"471\";s:5:\"title\";s:17:\"Particle Effect 2\";s:5:\"alias\";s:17:\"Particle-Effect-2\";s:3:\"zip\";s:21:\"Particle-Effect-2.zip\";s:3:\"uid\";s:32:\"303337c29a97a816ccecca7e5f0b5e20\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/cyber-particle-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">Amaze your website visitors with the cyber particle effect for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:409;a:25:{s:2:\"id\";s:3:\"473\";s:5:\"title\";s:10:\"Stark Menu\";s:5:\"alias\";s:10:\"stark-menu\";s:3:\"zip\";s:20:\"packs/stark-menu.zip\";s:3:\"uid\";s:32:\"bb31150df180e784d76a1f5ea306bf05\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:87:\"offset=\"t:0px,0px,0px,0px;b:0px,0px,0px,0px;l:140px,70px,0px,0px;r:140px,70px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:410;a:25:{s:2:\"id\";s:3:\"474\";s:5:\"title\";s:12:\"Stark Header\";s:5:\"alias\";s:12:\"stark-header\";s:3:\"zip\";s:22:\"packs/stark-header.zip\";s:3:\"uid\";s:32:\"62bfca01bf6e33cfad81d8df06498299\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:93:\"offset=\"t:40px,30px,20px,10px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:411;a:26:{s:2:\"id\";s:3:\"475\";s:5:\"title\";s:13:\"Stark Content\";s:5:\"alias\";s:13:\"stark-content\";s:3:\"zip\";s:23:\"packs/stark-content.zip\";s:3:\"uid\";s:32:\"4577ca760133eb5d894c46f212f6eefb\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"6\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:412;a:25:{s:2:\"id\";s:3:\"476\";s:5:\"title\";s:14:\"Stark Carousel\";s:5:\"alias\";s:14:\"stark-carousel\";s:3:\"zip\";s:24:\"packs/stark-carousel.zip\";s:3:\"uid\";s:32:\"de63336d333eeff10eccfd5d9741e6c9\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"1\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:413;a:26:{s:2:\"id\";s:3:\"477\";s:5:\"title\";s:15:\"Stark Portfolio\";s:5:\"alias\";s:15:\"stark-portfolio\";s:3:\"zip\";s:25:\"packs/stark-portfolio.zip\";s:3:\"uid\";s:32:\"99fcf3df65f8471fe30bec1bf0c2350d\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"5\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:414;a:25:{s:2:\"id\";s:3:\"478\";s:5:\"title\";s:22:\"Stark Portfolio Detail\";s:5:\"alias\";s:22:\"stark-portfolio-detail\";s:3:\"zip\";s:32:\"packs/stark-portfolio-detail.zip\";s:3:\"uid\";s:32:\"7484fc54f81daec07c93e992216310ce\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:415;a:25:{s:2:\"id\";s:3:\"479\";s:5:\"title\";s:13:\"Stark Contact\";s:5:\"alias\";s:13:\"stark-contact\";s:3:\"zip\";s:23:\"packs/stark-contact.zip\";s:3:\"uid\";s:32:\"8d704226b7093123a9d9faf424da6c35\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"2\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:416;a:26:{s:2:\"id\";s:3:\"480\";s:5:\"title\";s:12:\"Stark Footer\";s:5:\"alias\";s:12:\"stark-footer\";s:3:\"zip\";s:22:\"packs/stark-footer.zip\";s:3:\"uid\";s:32:\"e7132dc158e7dcdb4ef5b3a1aa00208a\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:114:\"offset=\"t:-50px,-30px,-30px,-20px;b:40px,30px,20px,20px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"3\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:417;a:25:{s:2:\"id\";s:3:\"481\";s:5:\"title\";s:16:\"Stark Newsletter\";s:5:\"alias\";s:16:\"stark-newsletter\";s:3:\"zip\";s:26:\"packs/stark-newsletter.zip\";s:3:\"uid\";s:32:\"bb76ddd68dbe6bda5ece7e4227a51413\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:33:\"usage=\"modal\" modal=\"s:#contact;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:418;a:22:{s:2:\"id\";s:3:\"482\";s:5:\"title\";s:15:\"Big Summer Sale\";s:5:\"alias\";s:15:\"big-summer-sale\";s:3:\"zip\";s:19:\"big-summer-sale.zip\";s:3:\"uid\";s:32:\"a6779fa7109763209d234f9cf2e766c6\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/big-summer-sale-shop-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">The Big Summer Sale Shop Slider is a beautiful eye catcher for your e-commerce website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:419;a:23:{s:2:\"id\";s:3:\"483\";s:5:\"title\";s:18:\"Traveller Carousel\";s:5:\"alias\";s:18:\"traveller-carousel\";s:3:\"zip\";s:22:\"traveller-carousel.zip\";s:3:\"uid\";s:32:\"185344ed6236bea2906a79035d1d5702\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/travel-blog-carousel/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A travel blog carousel with interesting parallax and ken burns effects!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:263:\"<span class=\"ttm_content\">Note that the content visible on all slides can be edited on the \"global layers\" slide.<br/>Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:420;a:22:{s:2:\"id\";s:3:\"484\";s:5:\"title\";s:16:\"Project Carousel\";s:5:\"alias\";s:16:\"project-carousel\";s:3:\"zip\";s:20:\"project-carousel.zip\";s:3:\"uid\";s:32:\"49c85ad406da943bdd25f08fd6496748\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/project-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A project carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:421;a:22:{s:2:\"id\";s:3:\"485\";s:5:\"title\";s:13:\"News Carousel\";s:5:\"alias\";s:13:\"news-carousel\";s:3:\"zip\";s:17:\"news-carousel.zip\";s:3:\"uid\";s:32:\"76f5b939150092a30038f161084140ae\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/news-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A news carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:422;a:26:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:10:\"Story Menu\";s:5:\"alias\";s:10:\"story-menu\";s:3:\"zip\";s:20:\"packs/story-menu.zip\";s:3:\"uid\";s:32:\"1f2f7cd91480f15cff8e7100f788c650\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:423;a:26:{s:2:\"id\";s:3:\"488\";s:5:\"title\";s:12:\"Story Header\";s:5:\"alias\";s:12:\"story-header\";s:3:\"zip\";s:22:\"packs/story-header.zip\";s:3:\"uid\";s:32:\"e1a5ad5018a24ccdc71c2863edfe775e\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:424;a:26:{s:2:\"id\";s:3:\"489\";s:5:\"title\";s:13:\"Story Block 1\";s:5:\"alias\";s:13:\"story-block-1\";s:3:\"zip\";s:23:\"packs/story-block-1.zip\";s:3:\"uid\";s:32:\"2a9fee97dcf477e36d048af8a902f47a\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:425;a:26:{s:2:\"id\";s:3:\"490\";s:5:\"title\";s:15:\"Story Content 1\";s:5:\"alias\";s:15:\"story-content-1\";s:3:\"zip\";s:25:\"packs/story-content-1.zip\";s:3:\"uid\";s:32:\"6773614bbce543b83a0d2b2ad8facc96\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:426;a:26:{s:2:\"id\";s:3:\"491\";s:5:\"title\";s:13:\"Story Block 2\";s:5:\"alias\";s:13:\"story-block-2\";s:3:\"zip\";s:23:\"packs/story-block-2.zip\";s:3:\"uid\";s:32:\"2e708e3cebab57ca20b228ffba426ce7\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:427;a:26:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:13:\"Story Block 3\";s:5:\"alias\";s:13:\"story-block-3\";s:3:\"zip\";s:23:\"packs/story-block-3.zip\";s:3:\"uid\";s:32:\"7156cf069f65644faf90122dab451231\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:428;a:26:{s:2:\"id\";s:3:\"493\";s:5:\"title\";s:15:\"Story Content 2\";s:5:\"alias\";s:15:\"story-content-2\";s:3:\"zip\";s:25:\"packs/story-content-2.zip\";s:3:\"uid\";s:32:\"1223cd77d1f36d69e69ce50223e16ea7\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:429;a:26:{s:2:\"id\";s:3:\"494\";s:5:\"title\";s:13:\"Story Block 4\";s:5:\"alias\";s:13:\"story-block-4\";s:3:\"zip\";s:23:\"packs/story-block-4.zip\";s:3:\"uid\";s:32:\"85ac48e8e8231d2c38206cba4e7ebb68\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:430;a:26:{s:2:\"id\";s:3:\"495\";s:5:\"title\";s:15:\"Story Content 3\";s:5:\"alias\";s:15:\"story-content-3\";s:3:\"zip\";s:25:\"packs/story-content-3.zip\";s:3:\"uid\";s:32:\"82cac52f3ba79c0559fe0ad0cdf9d3b2\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:431;a:22:{s:2:\"id\";s:3:\"442\";s:5:\"title\";s:27:\"Real Estate Showcase Slider\";s:5:\"alias\";s:27:\"real-estate-showcase-slider\";s:3:\"zip\";s:31:\"Real-Estate-Showcase-Slider.zip\";s:3:\"uid\";s:32:\"486b2bbe296722e70421731e3c05711b\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">An elegant showcase for your real estate & realtor website. Flexible and customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:432;a:22:{s:2:\"id\";s:3:\"497\";s:5:\"title\";s:18:\"Food Delivery Hero\";s:5:\"alias\";s:13:\"food-delivery\";s:3:\"zip\";s:17:\"food-delivery.zip\";s:3:\"uid\";s:32:\"992e9b22ff43227a655eea341835d04c\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";s:7:\"preview\";s:62:\"https://www.sliderrevolution.com/templates/food-delivery-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">Yummy! This hero template convinces with a changing color background, a particle effect, vibrant illustrations and smooth mouse over effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:342:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:433;a:22:{s:2:\"id\";s:3:\"498\";s:5:\"title\";s:25:\"Slider With Illustrations\";s:5:\"alias\";s:25:\"slider-with-illustrations\";s:3:\"zip\";s:29:\"slider-with-illustrations.zip\";s:3:\"uid\";s:32:\"ebc24280b669f26734c7fdd8b5683e9f\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/slider-with-illustrations/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">A basic slider template with easy to customize content, colorful illustrations and pleasant parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:434;a:26:{s:2:\"id\";s:3:\"500\";s:5:\"title\";s:8:\"Zen Menu\";s:5:\"alias\";s:8:\"zen-menu\";s:3:\"zip\";s:18:\"packs/zen-menu.zip\";s:3:\"uid\";s:32:\"3b53d755058b75fa6172510dcca2f2bb\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:435;a:25:{s:2:\"id\";s:3:\"501\";s:5:\"title\";s:10:\"Zen Header\";s:5:\"alias\";s:10:\"zen-header\";s:3:\"zip\";s:20:\"packs/zen-header.zip\";s:3:\"uid\";s:32:\"13d3cdde05308616fda7e2920a29e006\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:436;a:25:{s:2:\"id\";s:3:\"502\";s:5:\"title\";s:9:\"Zen About\";s:5:\"alias\";s:9:\"zen-about\";s:3:\"zip\";s:19:\"packs/zen-about.zip\";s:3:\"uid\";s:32:\"d50d4f9b43e025fa99503b9a4eec6551\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:437;a:25:{s:2:\"id\";s:3:\"503\";s:5:\"title\";s:12:\"Zen Features\";s:5:\"alias\";s:12:\"zen-features\";s:3:\"zip\";s:22:\"packs/zen-features.zip\";s:3:\"uid\";s:32:\"f4f7f500fae57b1b55adace13f030778\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:438;a:25:{s:2:\"id\";s:3:\"504\";s:5:\"title\";s:9:\"Zen Video\";s:5:\"alias\";s:9:\"zen-video\";s:3:\"zip\";s:19:\"packs/zen-video.zip\";s:3:\"uid\";s:32:\"fa83df1b45b795174770b1b0155e89f3\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:439;a:25:{s:2:\"id\";s:3:\"505\";s:5:\"title\";s:11:\"Zen Pricing\";s:5:\"alias\";s:11:\"zen-pricing\";s:3:\"zip\";s:21:\"packs/zen-pricing.zip\";s:3:\"uid\";s:32:\"921f8e5c156d9027f6ae8f1c5e426251\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:440;a:25:{s:2:\"id\";s:3:\"506\";s:5:\"title\";s:22:\"Zen Testimonials Title\";s:5:\"alias\";s:22:\"zen-testimonials-title\";s:3:\"zip\";s:32:\"packs/zen-testimonials-title.zip\";s:3:\"uid\";s:32:\"d9aeeb596c0455ddd564a60a2d449b17\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:441;a:25:{s:2:\"id\";s:3:\"507\";s:5:\"title\";s:16:\"Zen Testimonials\";s:5:\"alias\";s:16:\"zen-testimonials\";s:3:\"zip\";s:26:\"packs/zen-testimonials.zip\";s:3:\"uid\";s:32:\"5a0e0141599c63828e4b99e3bc863366\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:442;a:25:{s:2:\"id\";s:3:\"508\";s:5:\"title\";s:10:\"Zen Footer\";s:5:\"alias\";s:10:\"zen-footer\";s:3:\"zip\";s:20:\"packs/zen-footer.zip\";s:3:\"uid\";s:32:\"47fb8604e2aafa8cfc97f5af75fda911\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:443;a:22:{s:2:\"id\";s:3:\"509\";s:5:\"title\";s:24:\"Paintbrush Effect Add-on\";s:5:\"alias\";s:17:\"Paintbrush-Effect\";s:3:\"zip\";s:21:\"Paintbrush-Effect.zip\";s:3:\"uid\";s:32:\"b934d1376df026f0ff45447de17b5ee9\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/paintbrush-effect-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:179:\"<span class=\"ttm_content\">The Paintbrush Effect Add-on is the perfect way to add some interactivity to your website with Slider Revolution.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:338:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:444;a:25:{s:2:\"id\";s:3:\"511\";s:5:\"title\";s:19:\"Photographer Header\";s:5:\"alias\";s:19:\"Photographer-Header\";s:3:\"zip\";s:29:\"packs/Photographer-Header.zip\";s:3:\"uid\";s:32:\"22de8b3b1eeca5d0d1087791a28cc641\";s:3:\"img\";s:30:\"Photographer-Header/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:445;a:25:{s:2:\"id\";s:3:\"512\";s:5:\"title\";s:27:\"Photographer Welcome Screen\";s:5:\"alias\";s:27:\"Photographer-Welcome-Screen\";s:3:\"zip\";s:37:\"packs/Photographer-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"8de63df079ad8b7c0aa7bf164bd5fd8f\";s:3:\"img\";s:38:\"Photographer-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:446;a:25:{s:2:\"id\";s:3:\"513\";s:5:\"title\";s:21:\"Photographer Showcase\";s:5:\"alias\";s:21:\"Photographer-Showcase\";s:3:\"zip\";s:31:\"packs/Photographer-Showcase.zip\";s:3:\"uid\";s:32:\"8b2c7a1541465f77e829a9ac58926359\";s:3:\"img\";s:32:\"Photographer-Showcase/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:447;a:25:{s:2:\"id\";s:3:\"514\";s:5:\"title\";s:22:\"Photographer Portfolio\";s:5:\"alias\";s:22:\"Photographer-Portfolio\";s:3:\"zip\";s:32:\"packs/Photographer-Portfolio.zip\";s:3:\"uid\";s:32:\"ba5cc502a9505725ef169eaf4852d10f\";s:3:\"img\";s:33:\"Photographer-Portfolio/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:448;a:25:{s:2:\"id\";s:3:\"515\";s:5:\"title\";s:21:\"Photographer Contacts\";s:5:\"alias\";s:21:\"Photographer-Contacts\";s:3:\"zip\";s:31:\"packs/Photographer-Contacts.zip\";s:3:\"uid\";s:32:\"6ac142733cd260b5d5d3cdce30885074\";s:3:\"img\";s:32:\"Photographer-Contacts/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:449;a:25:{s:2:\"id\";s:3:\"516\";s:5:\"title\";s:19:\"Photographer Footer\";s:5:\"alias\";s:19:\"Photographer-Footer\";s:3:\"zip\";s:29:\"packs/Photographer-Footer.zip\";s:3:\"uid\";s:32:\"5fae568a988d072fb14b66cc2732ea46\";s:3:\"img\";s:30:\"Photographer-Footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:450;a:25:{s:2:\"id\";s:3:\"517\";s:5:\"title\";s:18:\"Photographer Modal\";s:5:\"alias\";s:18:\"Photographer-Modal\";s:3:\"zip\";s:28:\"packs/Photographer-Modal.zip\";s:3:\"uid\";s:32:\"e6b47a765ad19bce4726540ff7211c07\";s:3:\"img\";s:29:\"Photographer-Modal/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:451;a:22:{s:2:\"id\";s:3:\"496\";s:5:\"title\";s:21:\"Animated Mini Website\";s:5:\"alias\";s:12:\"mini-website\";s:3:\"zip\";s:16:\"mini-website.zip\";s:3:\"uid\";s:32:\"cc6c0a3b0f933a88c43e2be0fa397c1c\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";s:7:\"preview\";s:56:\"https://www.sliderrevolution.com/templates/mini-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">The animated mini website template has a modern, vibrant design and can be customized easily! Get the #1 WordPress Builder with 200+ templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:452;a:23:{s:2:\"id\";s:3:\"518\";s:5:\"title\";s:25:\"Black Friday Scroll Video\";s:5:\"alias\";s:25:\"black-friday-scroll-video\";s:3:\"zip\";s:29:\"black-friday-scroll-video.zip\";s:3:\"uid\";s:32:\"a6a4ab2e2f703aaee0a1e6121881bdd8\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/black-friday-scroll-video/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">Blackfriday offers are coming towards you from the depths of space, with this scroll-based hero module.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:370:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:453;a:25:{s:2:\"id\";s:3:\"520\";s:5:\"title\";s:12:\"Charity Menu\";s:5:\"alias\";s:12:\"charity-menu\";s:3:\"zip\";s:22:\"packs/charity-menu.zip\";s:3:\"uid\";s:32:\"77794a39041c7f128de3b5ad9b8e7d0d\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:454;a:25:{s:2:\"id\";s:3:\"521\";s:5:\"title\";s:14:\"Charity Header\";s:5:\"alias\";s:14:\"charity-header\";s:3:\"zip\";s:24:\"packs/charity-header.zip\";s:3:\"uid\";s:32:\"36096787d4ed62942cbd48f6a57e9d4f\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:455;a:25:{s:2:\"id\";s:3:\"522\";s:5:\"title\";s:15:\"Charity Mission\";s:5:\"alias\";s:15:\"charity-mission\";s:3:\"zip\";s:25:\"packs/charity-mission.zip\";s:3:\"uid\";s:32:\"8c5cd67e3eb51c0ca3e571408ac8e97b\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:456;a:25:{s:2:\"id\";s:3:\"523\";s:5:\"title\";s:13:\"Charity Funds\";s:5:\"alias\";s:13:\"charity-funds\";s:3:\"zip\";s:23:\"packs/charity-funds.zip\";s:3:\"uid\";s:32:\"10da554c7529ef91965e1618a04b410b\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:457;a:25:{s:2:\"id\";s:3:\"524\";s:5:\"title\";s:15:\"Charity Success\";s:5:\"alias\";s:15:\"charity-success\";s:3:\"zip\";s:25:\"packs/charity-success.zip\";s:3:\"uid\";s:32:\"0c35448c1905272606e87447886a348e\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:458;a:25:{s:2:\"id\";s:3:\"525\";s:5:\"title\";s:15:\"Charity Stories\";s:5:\"alias\";s:15:\"charity-stories\";s:3:\"zip\";s:25:\"packs/charity-stories.zip\";s:3:\"uid\";s:32:\"f277f145d9f9c3f0033bb8ceffeb4c9f\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:459;a:25:{s:2:\"id\";s:3:\"526\";s:5:\"title\";s:16:\"Charity Worldmap\";s:5:\"alias\";s:16:\"charity-worldmap\";s:3:\"zip\";s:26:\"packs/charity-worldmap.zip\";s:3:\"uid\";s:32:\"9e00cbac269b92cb24fd3230297f4685\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:460;a:25:{s:2:\"id\";s:3:\"527\";s:5:\"title\";s:19:\"Charity Large Image\";s:5:\"alias\";s:19:\"charity-large-image\";s:3:\"zip\";s:29:\"packs/charity-large-image.zip\";s:3:\"uid\";s:32:\"fa927036c2b14622832106fa987bc8e7\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:461;a:25:{s:2:\"id\";s:3:\"528\";s:5:\"title\";s:16:\"Charity Sponsors\";s:5:\"alias\";s:16:\"charity-sponsors\";s:3:\"zip\";s:26:\"packs/charity-sponsors.zip\";s:3:\"uid\";s:32:\"efd087bc3fa3915139af9e93d47ee295\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:462;a:25:{s:2:\"id\";s:3:\"529\";s:5:\"title\";s:12:\"Charity Help\";s:5:\"alias\";s:12:\"charity-help\";s:3:\"zip\";s:22:\"packs/charity-help.zip\";s:3:\"uid\";s:32:\"4f3571c0b27f061648c9ff95b1a3f718\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:463;a:25:{s:2:\"id\";s:3:\"530\";s:5:\"title\";s:14:\"Charity Footer\";s:5:\"alias\";s:14:\"charity-footer\";s:3:\"zip\";s:24:\"packs/charity-footer.zip\";s:3:\"uid\";s:32:\"9340fa48c56635a8a781cc37c4bf538c\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:464;a:22:{s:2:\"id\";s:3:\"531\";s:5:\"title\";s:21:\"Cinematic Hero Titles\";s:5:\"alias\";s:21:\"cinematic-hero-titles\";s:3:\"zip\";s:25:\"cinematic-hero-titles.zip\";s:3:\"uid\";s:32:\"51a59c54bb97c274092d22dbf4f6085e\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";s:7:\"preview\";s:65:\"https://www.sliderrevolution.com/templates/cinematic-hero-titles/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:199:\"<span class=\"ttm_content\">The \"Cinematic Hero Titles\" template is a collection of fullscreen hero blocks that use a cinematic, animated letter-spacing effect..</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:465;a:23:{s:2:\"id\";s:3:\"532\";s:5:\"title\";s:23:\"Design DNA Scroll Video\";s:5:\"alias\";s:23:\"design-dna-scroll-video\";s:3:\"zip\";s:27:\"design-dna-scroll-video.zip\";s:3:\"uid\";s:32:\"39180fc9f7a07e50832fc1a68fb4eba2\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/design-dna-scroll-video/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template is a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:544:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:466;a:22:{s:2:\"id\";s:3:\"533\";s:5:\"title\";s:27:\"Food Delivery Lottie Scroll\";s:5:\"alias\";s:27:\"food-delivery-lottie-scroll\";s:3:\"zip\";s:31:\"food-delivery-lottie-scroll.zip\";s:3:\"uid\";s:32:\"5dfbfac45c5df7702238ba1b43afe8f6\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/food-delivery-lottie-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template is a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:467;a:25:{s:2:\"id\";s:3:\"535\";s:5:\"title\";s:20:\"Food Recipe Carousel\";s:5:\"alias\";s:20:\"food-recipe-carousel\";s:3:\"zip\";s:30:\"packs/food-recipe-carousel.zip\";s:3:\"uid\";s:32:\"6ba9695ba1a22a6e99f96431d8fb01e8\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:468;a:25:{s:2:\"id\";s:3:\"536\";s:5:\"title\";s:17:\"Food Recipe Modal\";s:5:\"alias\";s:17:\"food-recipe-modal\";s:3:\"zip\";s:27:\"packs/food-recipe-modal.zip\";s:3:\"uid\";s:32:\"1c5b2e959cd973efc5c1887a3a4279f3\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:469;a:26:{s:2:\"id\";s:3:\"538\";s:5:\"title\";s:18:\"Corporate Carousel\";s:5:\"alias\";s:18:\"corporate-carousel\";s:3:\"zip\";s:28:\"packs/corporate-carousel.zip\";s:3:\"uid\";s:32:\"30dea0e333913cb5ebbf8dded8c3a839\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:26:51\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:470;a:25:{s:2:\"id\";s:3:\"539\";s:5:\"title\";s:18:\"Corporate Lightbox\";s:5:\"alias\";s:18:\"corporate-lightbox\";s:3:\"zip\";s:28:\"packs/corporate-lightbox.zip\";s:3:\"uid\";s:32:\"832c277bfc5a288c0dffd784e4041265\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:34:36\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:471;a:26:{s:2:\"id\";s:3:\"541\";s:5:\"title\";s:14:\"Cyber Carousel\";s:5:\"alias\";s:14:\"cyber-carousel\";s:3:\"zip\";s:24:\"packs/cyber-carousel.zip\";s:3:\"uid\";s:32:\"b5ef41c7f498bd1dccf8224bfbade718\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:42:44\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:472;a:25:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:23:\"Cyber Carousel Lightbox\";s:5:\"alias\";s:23:\"cyber-carousel-lightbox\";s:3:\"zip\";s:33:\"packs/cyber-carousel-lightbox.zip\";s:3:\"uid\";s:32:\"cb91abeed0555dfcafe849c37e7c9c32\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:50:15\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:473;a:25:{s:2:\"id\";s:3:\"543\";s:5:\"title\";s:16:\"Woo Carousel One\";s:5:\"alias\";s:24:\"woocommerce-carousel-one\";s:3:\"zip\";s:28:\"woocommerce-carousel-one.zip\";s:3:\"uid\";s:32:\"df0a99cef3981ecb608dff4ed573a493\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:02:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:474;a:25:{s:2:\"id\";s:3:\"544\";s:5:\"title\";s:23:\"Woo Carousel One Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-one-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-one-static.zip\";s:3:\"uid\";s:32:\"5c955a3850369e79b1e18921306ac1df\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:05:02\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:475;a:25:{s:2:\"id\";s:3:\"545\";s:5:\"title\";s:16:\"Woo Carousel Two\";s:5:\"alias\";s:24:\"woocommerce-carousel-two\";s:3:\"zip\";s:28:\"woocommerce-carousel-two.zip\";s:3:\"uid\";s:32:\"fdd797d8e98a9138f5563b68b95ebe1c\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:06:57\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:476;a:25:{s:2:\"id\";s:3:\"546\";s:5:\"title\";s:23:\"Woo Carousel Two Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-two-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-two-static.zip\";s:3:\"uid\";s:32:\"2f3bfb1dfa99647426ce906f10dfc480\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:16:15\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:477;a:25:{s:2:\"id\";s:3:\"547\";s:5:\"title\";s:18:\"Woo Feature Slider\";s:5:\"alias\";s:26:\"woocommerce-feature-slider\";s:3:\"zip\";s:30:\"woocommerce-feature-slider.zip\";s:3:\"uid\";s:32:\"c8aa1f551065eeffc752f2d8daef6db1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:19:13\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:478;a:25:{s:2:\"id\";s:3:\"548\";s:5:\"title\";s:25:\"Woo Feature Slider Static\";s:5:\"alias\";s:33:\"woocommerce-feature-slider-static\";s:3:\"zip\";s:37:\"woocommerce-feature-slider-static.zip\";s:3:\"uid\";s:32:\"2f29e8fd101c799480152a7911b33ca6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">A static content slider Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:20:57\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:479;a:22:{s:2:\"id\";s:3:\"549\";s:5:\"title\";s:17:\"Woo Liquid Slider\";s:5:\"alias\";s:17:\"woo-liquid-slider\";s:3:\"zip\";s:21:\"woo-liquid-slider.zip\";s:3:\"uid\";s:32:\"9f455f73675a73dbefe820288e994f27\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:236:\"<span class=\"ttm_content\">A WooCommerce slider using the BubbleMorph addon for an interesting liquid effect. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:23:03\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:480;a:22:{s:2:\"id\";s:3:\"550\";s:5:\"title\";s:24:\"Woo Liquid Slider Static\";s:5:\"alias\";s:32:\"woocommerce-liquid-slider-static\";s:3:\"zip\";s:36:\"woocommerce-liquid-slider-static.zip\";s:3:\"uid\";s:32:\"5848192fea46ffee95a91aa531848e19\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">A static content slider using the BubbleMorph addon for an interesting liquid effect. For WooCommerce, please use the \"non-static\" version.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:24:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:481;a:22:{s:2:\"id\";s:3:\"553\";s:5:\"title\";s:24:\"Creative Hero Collection\";s:5:\"alias\";s:24:\"creative-hero-collection\";s:3:\"zip\";s:28:\"creative-hero-collection.zip\";s:3:\"uid\";s:32:\"e20126d93d081055e5ff3f6981b971fa\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/creative-hero-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:245:\"<span class=\"ttm_content\">A fantastic intro presentation for almost any website. If you want to use a single slide as a hero, simply drag it to the first position and set the layout of the module to \"scene\".</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:22:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:482;a:22:{s:2:\"id\";s:3:\"554\";s:5:\"title\";s:12:\"Photo Slider\";s:5:\"alias\";s:19:\"photographer-slider\";s:3:\"zip\";s:23:\"photographer-slider.zip\";s:3:\"uid\";s:32:\"e00104cff231e2aaeb149b3c63e78a5e\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";s:7:\"preview\";s:80:\"https://www.sliderrevolution.com/templates/photographer-and-videographer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">A great module for any photographer/videographer who wants to display their portfolio in an engaging way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:25:31\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:483;a:22:{s:2:\"id\";s:3:\"555\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:17:\"realestate-slider\";s:3:\"zip\";s:21:\"realestate-slider.zip\";s:3:\"uid\";s:32:\"596effabfef768f0371cba2b1fdd0c1d\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">Showcase your clients real estate offerings with this clean and convincing presentation.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-02-23 10:45:36\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:484;a:22:{s:2:\"id\";s:3:\"556\";s:5:\"title\";s:19:\"Saas Product Slider\";s:5:\"alias\";s:19:\"saas-product-slider\";s:3:\"zip\";s:23:\"saas-product-slider.zip\";s:3:\"uid\";s:32:\"3cf7809058f383425c5409aa1204335f\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";s:7:\"preview\";s:63:\"https://www.sliderrevolution.com/templates/saas-product-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">Present your digital SaaS product with a modern design and stunning animations.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:349:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:49:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:485;a:26:{s:2:\"id\";s:3:\"558\";s:5:\"title\";s:25:\"Cinematic Wildlife Slider\";s:5:\"alias\";s:25:\"cinematic-wildlife-slider\";s:3:\"zip\";s:35:\"packs/cinematic-wildlife-slider.zip\";s:3:\"uid\";s:32:\"a37b04e221a845d6d446f4d70e815b87\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:47:01\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:486;a:26:{s:2:\"id\";s:3:\"559\";s:5:\"title\";s:24:\"Cinematic Wildlife Modal\";s:5:\"alias\";s:24:\"cinematic-wildlife-modal\";s:3:\"zip\";s:34:\"packs/cinematic-wildlife-modal.zip\";s:3:\"uid\";s:32:\"636a6885199f684ad743167ceea70dc4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:50:56\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:487;a:23:{s:2:\"id\";s:3:\"560\";s:5:\"title\";s:32:\"Gaming Stats Presentation Slider\";s:5:\"alias\";s:32:\"gaming-stats-presentation-slider\";s:3:\"zip\";s:36:\"gaming-stats-presentation-slider.zip\";s:3:\"uid\";s:32:\"988df5050f2a45a108ef32518a725bf8\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/charts-addon-presentation-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.4.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">Create interactive presentations and showcase statistics with unique and customizable charts</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:159:\"[{\"path\":\"revslider-charts-addon\\/revslider-charts-addon.php\",\"name\":\"Charts AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-04-29 09:50:58\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:488;a:23:{s:2:\"id\";s:3:\"561\";s:5:\"title\";s:31:\"Coffee Shop Split Screen Slider\";s:5:\"alias\";s:15:\"coffee-flavours\";s:3:\"zip\";s:19:\"coffee-flavours.zip\";s:3:\"uid\";s:32:\"63726447a6a614d8f53fbf6024fd3033\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/coffee-shop-split-screen-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">The animated elements and clean layout make this slider an eye-catcher for your coffee shop. With it\'s easy customizability, this template is perfect for showcasing any type of product!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:09:52\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:489;a:22:{s:2:\"id\";s:3:\"562\";s:5:\"title\";s:32:\"Modern Portfolio Showreel Slider\";s:5:\"alias\";s:15:\"showreel-slider\";s:3:\"zip\";s:19:\"showreel-slider.zip\";s:3:\"uid\";s:32:\"bced29a585e67153a1ed7608ddcdb69d\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/modern-portfolio-showreel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:216:\"<span class=\"ttm_content\">Showcase beautiful videos and photography with this clean looking slider with modern UI and effective typography. Perfect for any creative professional.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:14:43\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:490;a:23:{s:2:\"id\";s:3:\"563\";s:5:\"title\";s:23:\"Visual Art Forms Slider\";s:5:\"alias\";s:16:\"visual-art-forms\";s:3:\"zip\";s:20:\"visual-art-forms.zip\";s:3:\"uid\";s:32:\"4d57a5abf20bc4a615fe30837ac3ce1a\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/visual-art-forms-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:180:\"<span class=\"ttm_content\">Present just about anything with this highly flexible and modern looking slider, no matter what industry you are in.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:18:19\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:491;a:22:{s:2:\"id\";s:3:\"564\";s:5:\"title\";s:22:\"Background Effect Hero\";s:5:\"alias\";s:14:\"bg-effect-hero\";s:3:\"zip\";s:18:\"bg-effect-hero.zip\";s:3:\"uid\";s:32:\"55bb0fa5ac66ad84423fa704b701e1df\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";s:7:\"preview\";s:77:\"https://www.sliderrevolution.com/templates/background-effect-hero-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:224:\"<span class=\"ttm_content\">If you really want to stun your visitors with gorgeous gradients and dreamy transitions, <br />\r\nthis slider / hero module is exactly what you were looking for.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:697:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:45:50\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:492;a:22:{s:2:\"id\";s:3:\"565\";s:5:\"title\";s:26:\"Cyber Glitch Effect Slider\";s:5:\"alias\";s:9:\"cyberfunk\";s:3:\"zip\";s:13:\"cyberfunk.zip\";s:3:\"uid\";s:32:\"44fdc7e13074bdc46500972cd708c739\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/cyber-glitch-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">Dive into a futuristic, neon, cyber world with this amazing slider template featuring <br />\r\nglitch effect transitions and a typewriter effect.<br />\r\nThe custom navigation skin can be customized easily!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:355:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:51:54\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:493;a:23:{s:2:\"id\";s:3:\"566\";s:5:\"title\";s:30:\"Motion Blur Portfolio Showcase\";s:5:\"alias\";s:21:\"motion-blur-portfolio\";s:3:\"zip\";s:25:\"motion-blur-portfolio.zip\";s:3:\"uid\";s:32:\"28086bed49cfb241c7d40f91cd64e970\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";s:7:\"preview\";s:74:\"https://www.sliderrevolution.com/templates/motion-blur-portfolio-showcase/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This clean showcase slider with an optional video popup is using a fancy motion blur transition!<br />\r\nPacked with a logo and menu it’s ready to visualize your wildest ideas.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:56:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:494;a:23:{s:2:\"id\";s:3:\"567\";s:5:\"title\";s:25:\"Portal Effect Hero Slider\";s:5:\"alias\";s:18:\"portal-effect-hero\";s:3:\"zip\";s:22:\"portal-effect-hero.zip\";s:3:\"uid\";s:32:\"87f5b64e44dc5b75bc1c7adbeb287ee9\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/portal-effect-hero-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:282:\"<span class=\"ttm_content\">This slider module can function as an impressive landing page or a striking product presentation anywhere on your WordPress website.<br />\r\nThe design already includes elements like a logo, menu and social media icons.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:08:18\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:495;a:22:{s:2:\"id\";s:3:\"568\";s:5:\"title\";s:22:\"Winery Timeline Slider\";s:5:\"alias\";s:15:\"winery-timeline\";s:3:\"zip\";s:19:\"winery-timeline.zip\";s:3:\"uid\";s:32:\"d2ccdaf0a5c73db21e8e8a3f6712e8bd\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/winery-timeline-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:247:\"<span class=\"ttm_content\">Tell your own story with this fabulous timeline slider.<br />\r\nLogo and social icon design elements are already included if you want to use this template as a standalone landing page!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:13:39\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:496;a:25:{s:2:\"id\";s:3:\"572\";s:5:\"title\";s:6:\"Menu 1\";s:5:\"alias\";s:6:\"menu-1\";s:3:\"zip\";s:16:\"packs/menu-1.zip\";s:3:\"uid\";s:32:\"6e5038d711f2ee8326c79c3a9e06ded4\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:41:12\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:497;a:26:{s:2:\"id\";s:3:\"573\";s:5:\"title\";s:6:\"Hero 1\";s:5:\"alias\";s:14:\"onepage-hero-1\";s:3:\"zip\";s:24:\"packs/onepage-hero-1.zip\";s:3:\"uid\";s:32:\"9f5fec6956bd2e1e1ecc553a8b7471b0\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:48:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:498;a:25:{s:2:\"id\";s:3:\"574\";s:5:\"title\";s:7:\"About 1\";s:5:\"alias\";s:6:\"about1\";s:3:\"zip\";s:16:\"packs/about1.zip\";s:3:\"uid\";s:32:\"fc4962093f61124101c05ceb506fa5d2\";s:3:\"img\";s:17:\"about1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:50:54\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:499;a:25:{s:2:\"id\";s:3:\"575\";s:5:\"title\";s:10:\"Services 1\";s:5:\"alias\";s:9:\"services1\";s:3:\"zip\";s:19:\"packs/services1.zip\";s:3:\"uid\";s:32:\"08f72a81aeb9afdaa57f544e4331a6da\";s:3:\"img\";s:20:\"services1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:52:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:500;a:25:{s:2:\"id\";s:3:\"576\";s:5:\"title\";s:10:\"Projects 1\";s:5:\"alias\";s:9:\"projects1\";s:3:\"zip\";s:19:\"packs/projects1.zip\";s:3:\"uid\";s:32:\"11ff60e82fcf47a6a2c6bdce3cc1d8f2\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:01:48\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:501;a:25:{s:2:\"id\";s:3:\"577\";s:5:\"title\";s:8:\"Footer 1\";s:5:\"alias\";s:8:\"footer-1\";s:3:\"zip\";s:18:\"packs/footer-1.zip\";s:3:\"uid\";s:32:\"947fac99689a985c7f0f7dfec4311f6b\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:05:00\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:502;a:25:{s:2:\"id\";s:3:\"578\";s:5:\"title\";s:24:\"Explainer Block 1 Part 1\";s:5:\"alias\";s:23:\"explainer-block-1-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part1.zip\";s:3:\"uid\";s:32:\"731980bef0ea06263d05b286b5a75dfe\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:06:07\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:503;a:25:{s:2:\"id\";s:3:\"579\";s:5:\"title\";s:24:\"Explainer Block 1 Part 2\";s:5:\"alias\";s:23:\"explainer-block-1-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part2.zip\";s:3:\"uid\";s:32:\"ded730f13551f78b9a87b159b72d8ce8\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:07:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:504;a:25:{s:2:\"id\";s:3:\"580\";s:5:\"title\";s:16:\"Projects Modal 1\";s:5:\"alias\";s:16:\"projects-modal-1\";s:3:\"zip\";s:26:\"packs/projects-modal-1.zip\";s:3:\"uid\";s:32:\"b17af2f4e21786711a2ce4ac0c4436ad\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:08:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:505;a:25:{s:2:\"id\";s:3:\"581\";s:5:\"title\";s:6:\"Menu 2\";s:5:\"alias\";s:6:\"menu-2\";s:3:\"zip\";s:16:\"packs/menu-2.zip\";s:3:\"uid\";s:32:\"a8d103f753ee50d4f81aa4100df8b7f9\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:20:20\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:506;a:25:{s:2:\"id\";s:3:\"582\";s:5:\"title\";s:6:\"Hero 2\";s:5:\"alias\";s:6:\"hero-2\";s:3:\"zip\";s:16:\"packs/hero-2.zip\";s:3:\"uid\";s:32:\"7e56900f8c4b6e12435b70e141accaa8\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 15:27:59\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:507;a:25:{s:2:\"id\";s:3:\"583\";s:5:\"title\";s:10:\"Services 2\";s:5:\"alias\";s:10:\"services-2\";s:3:\"zip\";s:20:\"packs/services-2.zip\";s:3:\"uid\";s:32:\"da2d588b291a7754096ac77746ba1da5\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:29:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:508;a:25:{s:2:\"id\";s:3:\"584\";s:5:\"title\";s:7:\"About 2\";s:5:\"alias\";s:7:\"about-2\";s:3:\"zip\";s:17:\"packs/about-2.zip\";s:3:\"uid\";s:32:\"8e9e84d1aec08de6e099473683bf0e57\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:30:15\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:509;a:25:{s:2:\"id\";s:3:\"585\";s:5:\"title\";s:10:\"Projects 2\";s:5:\"alias\";s:10:\"projects-2\";s:3:\"zip\";s:20:\"packs/projects-2.zip\";s:3:\"uid\";s:32:\"99bc6ca75f6d5e018701aef5f5b22b27\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:32:06\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:510;a:25:{s:2:\"id\";s:3:\"586\";s:5:\"title\";s:8:\"Footer 2\";s:5:\"alias\";s:7:\"footer2\";s:3:\"zip\";s:17:\"packs/footer2.zip\";s:3:\"uid\";s:32:\"99df496d2fd9e897a2debb66958cb610\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:34:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:511;a:25:{s:2:\"id\";s:3:\"587\";s:5:\"title\";s:24:\"Explainer Block 2 Part 1\";s:5:\"alias\";s:23:\"explainer-block-2-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part1.zip\";s:3:\"uid\";s:32:\"aee4d41e9cf5f91ad69bfbe96d1dc1b8\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:35:48\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:512;a:25:{s:2:\"id\";s:3:\"588\";s:5:\"title\";s:24:\"Explainer Block 2 Part 2\";s:5:\"alias\";s:23:\"explainer-block-2-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part2.zip\";s:3:\"uid\";s:32:\"b12ac82484c5d2609994978f95026057\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:37:05\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:513;a:25:{s:2:\"id\";s:3:\"589\";s:5:\"title\";s:16:\"Projects Modal 2\";s:5:\"alias\";s:16:\"projects-modal-2\";s:3:\"zip\";s:26:\"packs/projects-modal-2.zip\";s:3:\"uid\";s:32:\"ac164d7043a8958ae2931e4be54bf56e\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:38:22\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:514;a:25:{s:2:\"id\";s:3:\"590\";s:5:\"title\";s:6:\"Menu 3\";s:5:\"alias\";s:6:\"menu-3\";s:3:\"zip\";s:16:\"packs/menu-3.zip\";s:3:\"uid\";s:32:\"7300529d564642c76e61890cf0ef57cf\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:42:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:515;a:25:{s:2:\"id\";s:3:\"591\";s:5:\"title\";s:6:\"Hero 3\";s:5:\"alias\";s:6:\"hero-3\";s:3:\"zip\";s:16:\"packs/hero-3.zip\";s:3:\"uid\";s:32:\"08db05794abf4e6c10788cbd423f92b2\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:46:06\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:516;a:25:{s:2:\"id\";s:3:\"592\";s:5:\"title\";s:7:\"About 3\";s:5:\"alias\";s:7:\"about-3\";s:3:\"zip\";s:17:\"packs/about-3.zip\";s:3:\"uid\";s:32:\"dac01fc9b9d664f271e1ea6a1bbb850c\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:47:44\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:517;a:25:{s:2:\"id\";s:3:\"593\";s:5:\"title\";s:10:\"Services 3\";s:5:\"alias\";s:10:\"services-3\";s:3:\"zip\";s:20:\"packs/services-3.zip\";s:3:\"uid\";s:32:\"4bad1c4a765cef7d93d3c7e2a0e76b83\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:50:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:518;a:25:{s:2:\"id\";s:3:\"594\";s:5:\"title\";s:10:\"Projects 3\";s:5:\"alias\";s:10:\"projects-3\";s:3:\"zip\";s:20:\"packs/projects-3.zip\";s:3:\"uid\";s:32:\"e3337a84122e580679474dea8d7bf37c\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:51:31\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:519;a:25:{s:2:\"id\";s:3:\"595\";s:5:\"title\";s:8:\"Footer 3\";s:5:\"alias\";s:8:\"footer-3\";s:3:\"zip\";s:18:\"packs/footer-3.zip\";s:3:\"uid\";s:32:\"524f4445a5565bf3ef1dcd7b2f0228cc\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:53:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:520;a:25:{s:2:\"id\";s:3:\"596\";s:5:\"title\";s:24:\"Explainer Block 3 Part 1\";s:5:\"alias\";s:23:\"explainer-block-3-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part1.zip\";s:3:\"uid\";s:32:\"b1469a955fecb4e1d645a604804716de\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:54:20\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:521;a:25:{s:2:\"id\";s:3:\"597\";s:5:\"title\";s:24:\"Explainer Block 3 Part 2\";s:5:\"alias\";s:23:\"explainer-block-3-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part2.zip\";s:3:\"uid\";s:32:\"3faa6f1dc248ef2ba3d50cc60db557b1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:55:33\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:522;a:25:{s:2:\"id\";s:3:\"598\";s:5:\"title\";s:16:\"Projects Modal 3\";s:5:\"alias\";s:16:\"projects-modal-3\";s:3:\"zip\";s:26:\"packs/projects-modal-3.zip\";s:3:\"uid\";s:32:\"b22bb57c30e75bf7d7ba7d240a21b3fe\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:57:05\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:523;a:22:{s:2:\"id\";s:3:\"599\";s:5:\"title\";s:25:\"Urban Street Skate Slider\";s:5:\"alias\";s:25:\"urban-street-skate-slider\";s:3:\"zip\";s:29:\"urban-street-skate-slider.zip\";s:3:\"uid\";s:32:\"14b18e98ac51aa922a264b74518d6f25\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">Create catchy presentations with sleek transitions, using this urban-themed slider. A template that\'s perfectly suitable for showcasing products and marketing campaigns!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-14 18:54:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:524;a:22:{s:2:\"id\";s:3:\"600\";s:5:\"title\";s:34:\"Fast Food Burger Restaurant Slider\";s:5:\"alias\";s:13:\"yummy-burgers\";s:3:\"zip\";s:17:\"yummy-burgers.zip\";s:3:\"uid\";s:32:\"3de3520af809748281f3aaa16d8c2222\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";s:7:\"preview\";s:78:\"https://www.sliderrevolution.com/templates/fast-food-burger-restaurant-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">Make your clients feel hungry with this tasty looking slider, featuring jaw dropping animations and smooth interactions! Easily customizable for showcasing food related products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-11 12:47:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:525;a:25:{s:2:\"id\";s:3:\"602\";s:5:\"title\";s:24:\"Tattoo Event Hero Slider\";s:5:\"alias\";s:24:\"tattoo-event-hero-slider\";s:3:\"zip\";s:34:\"packs/tattoo-event-hero-slider.zip\";s:3:\"uid\";s:32:\"3a4eb0f2f1de6b9a644d626c4472208b\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:11:21\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:526;a:25:{s:2:\"id\";s:3:\"603\";s:5:\"title\";s:18:\"Tattoo Event About\";s:5:\"alias\";s:18:\"tattoo-event-about\";s:3:\"zip\";s:28:\"packs/tattoo-event-about.zip\";s:3:\"uid\";s:32:\"ae8aaf2b1aeb84036c35ac3d4a178ed6\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:14:35\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:527;a:25:{s:2:\"id\";s:3:\"604\";s:5:\"title\";s:20:\"Tattoo Event Artists\";s:5:\"alias\";s:20:\"tattoo-event-artists\";s:3:\"zip\";s:30:\"packs/tattoo-event-artists.zip\";s:3:\"uid\";s:32:\"e11b6508214396963c856afc1b604e58\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:16:36\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:528;a:25:{s:2:\"id\";s:3:\"605\";s:5:\"title\";s:21:\"Tattoo Event Schedule\";s:5:\"alias\";s:21:\"tattoo-event-schedule\";s:3:\"zip\";s:31:\"packs/tattoo-event-schedule.zip\";s:3:\"uid\";s:32:\"73be4b953a719fc9abfadc447e88b906\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:19:17\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:529;a:25:{s:2:\"id\";s:3:\"606\";s:5:\"title\";s:17:\"Tattoo Event News\";s:5:\"alias\";s:17:\"tattoo-event-news\";s:3:\"zip\";s:27:\"packs/tattoo-event-news.zip\";s:3:\"uid\";s:32:\"80eafaaaa2f1844cac7c5c1efb0912d1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:21:56\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:530;a:25:{s:2:\"id\";s:3:\"607\";s:5:\"title\";s:19:\"Tattoo Event Footer\";s:5:\"alias\";s:19:\"tattoo-event-footer\";s:3:\"zip\";s:29:\"packs/tattoo-event-footer.zip\";s:3:\"uid\";s:32:\"0c16f7290794f2e26566c8a8ca8f6493\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:23:18\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:531;a:25:{s:2:\"id\";s:3:\"609\";s:5:\"title\";s:12:\"Startup Menu\";s:5:\"alias\";s:12:\"startup-menu\";s:3:\"zip\";s:22:\"packs/startup-menu.zip\";s:3:\"uid\";s:32:\"10b7853c05d47a99e61a68ec7ef0a0ea\";s:3:\"img\";s:23:\"startup-menu/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:32:41\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:532;a:25:{s:2:\"id\";s:3:\"610\";s:5:\"title\";s:12:\"Startup Hero\";s:5:\"alias\";s:12:\"startup-hero\";s:3:\"zip\";s:22:\"packs/startup-hero.zip\";s:3:\"uid\";s:32:\"7a41e68bac8bc7f937b7eb957e01eb11\";s:3:\"img\";s:23:\"startup-hero/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:34:41\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:20:\"style=\"z-index:300;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:533;a:25:{s:2:\"id\";s:3:\"611\";s:5:\"title\";s:13:\"Startup About\";s:5:\"alias\";s:13:\"startup-about\";s:3:\"zip\";s:23:\"packs/startup-about.zip\";s:3:\"uid\";s:32:\"22a816ba986476a36fef3887ff4d1ea1\";s:3:\"img\";s:24:\"startup-about/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:36:55\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:18:\"style=\"z-index:0;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:534;a:25:{s:2:\"id\";s:3:\"612\";s:5:\"title\";s:18:\"Startup Features 1\";s:5:\"alias\";s:18:\"startup-features-1\";s:3:\"zip\";s:28:\"packs/startup-features-1.zip\";s:3:\"uid\";s:32:\"4b0b7b8773ba30bdc58b862442155faa\";s:3:\"img\";s:29:\"startup-features-1/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:39:11\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:20:\"style=\"z-index:300;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:535;a:25:{s:2:\"id\";s:3:\"613\";s:5:\"title\";s:18:\"Startup Features 2\";s:5:\"alias\";s:18:\"startup-features-2\";s:3:\"zip\";s:28:\"packs/startup-features-2.zip\";s:3:\"uid\";s:32:\"7a686556ca8c4355fea931b3e946a3d0\";s:3:\"img\";s:29:\"startup-features-2/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:40:44\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:18:\"style=\"z-index:0;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:536;a:25:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:12:\"Startup Team\";s:5:\"alias\";s:12:\"startup-team\";s:3:\"zip\";s:22:\"packs/startup-team.zip\";s:3:\"uid\";s:32:\"7969f1f556fd276ec04dcbf49144d2f8\";s:3:\"img\";s:23:\"startup-team/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:42:12\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:537;a:25:{s:2:\"id\";s:3:\"615\";s:5:\"title\";s:15:\"Startup Reviews\";s:5:\"alias\";s:15:\"startup-reviews\";s:3:\"zip\";s:25:\"packs/startup-reviews.zip\";s:3:\"uid\";s:32:\"4d5253028165c237cda5f42c3f721c09\";s:3:\"img\";s:26:\"startup-reviews/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:43:42\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:20:\"style=\"z-index:300;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:538;a:25:{s:2:\"id\";s:3:\"616\";s:5:\"title\";s:11:\"Startup CTA\";s:5:\"alias\";s:11:\"startup-cta\";s:3:\"zip\";s:21:\"packs/startup-cta.zip\";s:3:\"uid\";s:32:\"bfe7cb2a94dd8292179e16a986cf2748\";s:3:\"img\";s:22:\"startup-cta/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:45:02\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:539;a:25:{s:2:\"id\";s:3:\"617\";s:5:\"title\";s:14:\"Startup Footer\";s:5:\"alias\";s:14:\"startup-footer\";s:3:\"zip\";s:24:\"packs/startup-footer.zip\";s:3:\"uid\";s:32:\"d73466042d108699d366bf9cab2beaa8\";s:3:\"img\";s:25:\"startup-footer/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:46:31\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:540;a:25:{s:2:\"id\";s:3:\"618\";s:5:\"title\";s:19:\"Startup Video Modal\";s:5:\"alias\";s:19:\"startup-video-modal\";s:3:\"zip\";s:29:\"packs/startup-video-modal.zip\";s:3:\"uid\";s:32:\"5fd53a8ad93456a152c25079f6437377\";s:3:\"img\";s:30:\"startup-video-modal/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:47:44\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:541;a:25:{s:2:\"id\";s:3:\"620\";s:5:\"title\";s:24:\"Christmas Landing Page 1\";s:5:\"alias\";s:24:\"christmas-landing-page-1\";s:3:\"zip\";s:34:\"packs/christmas-landing-page-1.zip\";s:3:\"uid\";s:32:\"17eb656138d076ca1dc2d9fa5cefb1b8\";s:3:\"img\";s:43:\"christmas-gift-card-landing-page/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:509:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:08:37\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:542;a:25:{s:2:\"id\";s:3:\"621\";s:5:\"title\";s:24:\"Christmas Landing Page 2\";s:5:\"alias\";s:24:\"christmas-landing-page-2\";s:3:\"zip\";s:34:\"packs/christmas-landing-page-2.zip\";s:3:\"uid\";s:32:\"ea0d2cfdba50c8060c66ee7b979c3b83\";s:3:\"img\";s:35:\"christmas-landing-page-2/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:10:54\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:543;a:22:{s:2:\"id\";s:3:\"622\";s:5:\"title\";s:12:\"Image Slider\";s:5:\"alias\";s:12:\"image-slider\";s:3:\"zip\";s:16:\"image-slider.zip\";s:3:\"uid\";s:32:\"85a8fcfa9220809176bd3d6bc70b4abf\";s:3:\"img\";s:24:\"image-slider/slide-1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/newborn-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:213:\"<span class=\"ttm_content\">Get an instant \"wow\" from your visitors with this sleek background image slider, that includes a clean UI for easy navigation and smooth transitions.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-04 09:45:41\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:544;a:22:{s:2:\"id\";s:3:\"623\";s:5:\"title\";s:17:\"Full Width Slider\";s:5:\"alias\";s:17:\"full-width-slider\";s:3:\"zip\";s:21:\"full-width-slider.zip\";s:3:\"uid\";s:32:\"e2792804e7a1f3ec9806f6a6225a559d\";s:3:\"img\";s:28:\"full-width-slider/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/delicious-full-width-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">We\'ve prepared something tasty for you. A delicious looking, responsive full width slider, with a wide range of use cases and a plethora of smart, UI navigation options.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-10 11:40:04\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:545;a:25:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:16:\"App Website Menu\";s:5:\"alias\";s:16:\"app-website-menu\";s:3:\"zip\";s:26:\"packs/app-website-menu.zip\";s:3:\"uid\";s:32:\"c3c100db368c091d01852df9851b9840\";s:3:\"img\";s:27:\"app-website-menu/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:26:14\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:546;a:25:{s:2:\"id\";s:3:\"626\";s:5:\"title\";s:16:\"App Website Hero\";s:5:\"alias\";s:16:\"app-website-hero\";s:3:\"zip\";s:26:\"packs/app-website-hero.zip\";s:3:\"uid\";s:32:\"4b42974b08f2923986932ed529974d6f\";s:3:\"img\";s:27:\"app-website-hero/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:29:00\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:13:\" zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:547;a:25:{s:2:\"id\";s:3:\"627\";s:5:\"title\";s:20:\"App Download Buttons\";s:5:\"alias\";s:20:\"app-download-buttons\";s:3:\"zip\";s:30:\"packs/app-download-buttons.zip\";s:3:\"uid\";s:32:\"d5ecce65284cc95c506185e6f6291d55\";s:3:\"img\";s:31:\"app-download-buttons/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:31:22\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:548;a:25:{s:2:\"id\";s:3:\"628\";s:5:\"title\";s:17:\"App Website About\";s:5:\"alias\";s:17:\"app-website-about\";s:3:\"zip\";s:27:\"packs/app-website-about.zip\";s:3:\"uid\";s:32:\"984477b3ea7c943a7c6be78950754e3c\";s:3:\"img\";s:28:\"app-website-about/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:33:06\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:549;a:25:{s:2:\"id\";s:3:\"629\";s:5:\"title\";s:20:\"App Website Features\";s:5:\"alias\";s:20:\"app-website-features\";s:3:\"zip\";s:30:\"packs/app-website-features.zip\";s:3:\"uid\";s:32:\"206a0f73553c974ad86790fba6a13efd\";s:3:\"img\";s:31:\"app-website-features/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:35:08\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:550;a:25:{s:2:\"id\";s:3:\"630\";s:5:\"title\";s:21:\"App Website Video Cta\";s:5:\"alias\";s:21:\"app-website-video-cta\";s:3:\"zip\";s:31:\"packs/app-website-video-cta.zip\";s:3:\"uid\";s:32:\"19b2930f9cd9840dccbe94cb1cc435e2\";s:3:\"img\";s:32:\"app-website-video-cta/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:36:15\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:551;a:25:{s:2:\"id\";s:3:\"631\";s:5:\"title\";s:23:\"App Website Screenshots\";s:5:\"alias\";s:23:\"app-website-screenshots\";s:3:\"zip\";s:33:\"packs/app-website-screenshots.zip\";s:3:\"uid\";s:32:\"94ce8eeecb7ffad62adc2d29b203f9d2\";s:3:\"img\";s:34:\"app-website-screenshots/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:38:15\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:552;a:25:{s:2:\"id\";s:3:\"632\";s:5:\"title\";s:22:\"App Testimonials Title\";s:5:\"alias\";s:22:\"app-testimonials-title\";s:3:\"zip\";s:32:\"packs/app-testimonials-title.zip\";s:3:\"uid\";s:32:\"bea74fa6e180fe23007c3d215b1b0704\";s:3:\"img\";s:33:\"app-testimonials-title/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:40:21\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:553;a:25:{s:2:\"id\";s:3:\"633\";s:5:\"title\";s:24:\"App Website Testimonials\";s:5:\"alias\";s:24:\"app-website-testimonials\";s:3:\"zip\";s:34:\"packs/app-website-testimonials.zip\";s:3:\"uid\";s:32:\"e7438a870ac1007da4c7821056d511fc\";s:3:\"img\";s:35:\"app-website-testimonials/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:41:59\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:107:\" offset=\"t:-300px,-300px,-300px,-250px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\" zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:554;a:25:{s:2:\"id\";s:3:\"634\";s:5:\"title\";s:16:\"App Website Team\";s:5:\"alias\";s:16:\"app-website-team\";s:3:\"zip\";s:26:\"packs/app-website-team.zip\";s:3:\"uid\";s:32:\"d9013f2968e43f696f8cc33fa3524071\";s:3:\"img\";s:27:\"app-website-team/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:43:40\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:94:\" offset=\"t:-350px,-350px,-350px,-300px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:555;a:25:{s:2:\"id\";s:3:\"635\";s:5:\"title\";s:18:\"App Website Footer\";s:5:\"alias\";s:18:\"app-website-footer\";s:3:\"zip\";s:28:\"packs/app-website-footer.zip\";s:3:\"uid\";s:32:\"5e13126b929feb389f9e083f3476ec46\";s:3:\"img\";s:29:\"app-website-footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:45:12\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:556;a:25:{s:2:\"id\";s:3:\"636\";s:5:\"title\";s:15:\"App Video Modal\";s:5:\"alias\";s:15:\"app-video-modal\";s:3:\"zip\";s:25:\"packs/app-video-modal.zip\";s:3:\"uid\";s:32:\"7fe8115d0b6158c90fe92d1144ed7b01\";s:3:\"img\";s:26:\"app-video-modal/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:46:49\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}}s:6:\"slides\";a:578:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}s:11:\"techco-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";}}s:13:\"techco-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";}}s:12:\"techco-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";}}s:15:\"techco-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";}}s:12:\"techco-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";}}s:13:\"techco-prices\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";}}s:19:\"techco-testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"techco-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"techco-testimonials/slide3.jpg\";}}s:13:\"techco-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";}}s:7:\"weather\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"weather/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"weather/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"weather/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"weather/slide4.jpg\";}}s:11:\"360panorama\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"360panorama/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"360panorama/slide3.jpg\";}}s:14:\"duotone-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"duotone-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"duotone-add-on/slide3.jpg\";}}s:13:\"reveal-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"reveal-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"reveal-add-on/slide3.jpg\";}}s:16:\"band-tour-poster\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/band-tour-poster/slide1.png\";}}s:14:\"brewery-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide3.png\";}}s:9:\"burgerbar\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide3.png\";}}s:19:\"burger-bar-portrait\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide3.png\";}}s:8:\"car-rent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"smartcontent/car-rent/slide1.png\";}}s:6:\"coffee\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"smartcontent/coffee/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"smartcontent/coffee/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"smartcontent/coffee/slide3.png\";}}s:14:\"holiday-advert\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/holiday-advert/slide1.png\";}}s:18:\"iphone-cases-light\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"smartcontent/iphone-cases-light/slide1.png\";}}s:7:\"medical\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"smartcontent/medical/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"smartcontent/medical/slide2.png\";}}s:13:\"mexican-grill\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide3.png\";}}s:20:\"mobile-retail-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide3.png\";}}s:14:\"money-exchange\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide3.png\";}}s:28:\"restaurant-menu-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-first-screen/slide1.png\";}}s:29:\"restaurant-menu-second-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:53:\"smartcontent/restaurant-menu-second-screen/slide1.png\";}}s:28:\"restaurant-menu-third-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-third-screen/slide1.png\";}}s:11:\"shoes-store\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide3.png\";}}s:20:\"supermarket-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide4.png\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide5.png\";}}s:16:\"travel-insurance\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/travel-insurance/slide1.png\";}}s:12:\"cryptoslider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"cryptoslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"cryptoslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"cryptoslider/slide4.jpg\";}}s:16:\"immersion_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";}}s:19:\"immersion-mountains\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";}}s:17:\"immersion-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";}}s:16:\"immersion-design\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";}}s:21:\"immersion-photography\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";}}s:14:\"immersion-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";}}s:11:\"funkyslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"funkyslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"funkyslider/slide3.jpg\";}}s:14:\"clearview_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";}}s:16:\"clearview_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";}}s:17:\"clearview_mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";}}s:17:\"clear-view-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"clear-view-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"clear-view-slider/slide3.jpg\";}}s:15:\"clear-view-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";}}s:18:\"clear-view-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";}}s:18:\"clear-view-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";}}s:22:\"clear-view-single-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";}}s:24:\"clear-view-single-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";}}s:23:\"clear-view-single-media\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";}}s:22:\"clear-view-single-more\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";}}s:25:\"clear-view-single-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";}}s:16:\"cleanlandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";}}s:8:\"clearcut\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:19:\"clearcut/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:19:\"clearcut/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:19:\"clearcut/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:19:\"clearcut/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:19:\"clearcut/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:19:\"clearcut/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:19:\"clearcut/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:19:\"clearcut/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:20:\"clearcut/slide10.jpg\";}}s:17:\"wonderstruck_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";}}s:19:\"wonderstruck_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";}}s:18:\"wonderstruck_about\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"wonderstruck_about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"wonderstruck_about/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"wonderstruck_about/slide4.jpg\";}}s:18:\"wonderstruck-works\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";}}s:20:\"wonderstruck-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";}}s:11:\"bubblemorph\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"bubblemorph/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"bubblemorph/slide3.jpg\";}}s:15:\"distortionaddon\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"distortionaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"distortionaddon/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"distortionaddon/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"distortionaddon/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"distortionaddon/slide6.jpg\";}}s:9:\"clubflyer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";}}s:15:\"paintbrushaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"paintbrushaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"paintbrushaddon/slide3.jpg\";}}s:15:\"parallax_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";}}s:16:\"parallax_content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";}}s:15:\"parallax_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";}}s:12:\"le-chef-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";}}s:14:\"le-chef-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"le-chef-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"le-chef-header/slide3.jpg\";}}s:18:\"le-chef-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";}}s:12:\"le-chef-food\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";}}s:16:\"le-chef-la-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";}}s:14:\"le-chef-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";}}s:20:\"news-magazine-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"news-magazine-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"news-magazine-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"news-magazine-slider/slide4.jpg\";}}s:18:\"real-estate-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"real-estate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"real-estate-slider/slide3.jpg\";}}s:14:\"fashion-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fashion-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fashion-header/slide3.jpg\";}}s:13:\"seasonaloffer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";}}s:18:\"barber-shop-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";}}s:23:\"barber-shop-mobile-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";}}s:24:\"barber-shop-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";}}s:17:\"barber-shop-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";}}s:20:\"barber-shop-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";}}s:19:\"barber-shop-barbers\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";}}s:20:\"barber-shop-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";}}s:18:\"barber-shop-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";}}s:21:\"fitness-club-template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"fitness-club-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"fitness-club-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"fitness-club-template/slide4.jpg\";}}s:13:\"soccer-school\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"soccer-school/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"soccer-school/slide3.jpg\";}}s:19:\"music-band-template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"music-band-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"music-band-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"music-band-template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"music-band-template/slide5.jpg\";}}s:15:\"restaurant-menu\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"restaurant-menu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"restaurant-menu/slide3.jpg\";}}s:16:\"cinematic-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"cinematic-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"cinematic-slider/slide3.jpg\";}}s:17:\"3d-parallax-cubes\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide3.jpg\";}}s:13:\"medicare-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";}}s:15:\"medicare-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";}}s:14:\"medicare-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";}}s:18:\"medicare-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";}}s:17:\"medicare-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";}}s:16:\"medicare-doctors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";}}s:17:\"medicare-research\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"medicare-research/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"medicare-research/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"medicare-research/slide4.jpg\";}}s:18:\"medicare-whychoose\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";}}s:16:\"medicare-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";}}s:15:\"medicare-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";}}s:11:\"coffee-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";}}s:13:\"coffee-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";}}s:17:\"coffee-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";}}s:12:\"coffee-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";}}s:13:\"coffee-teaser\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";}}s:13:\"coffee-findus\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";}}s:13:\"coffee-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";}}s:17:\"minimal-portfolio\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"minimal-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"minimal-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"minimal-portfolio/slide4.jpg\";}}s:23:\"minimal-portfolio-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide7.jpg\";}}s:11:\"angled-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";}}s:13:\"angled-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";}}s:11:\"angled-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";}}s:15:\"angled-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";}}s:14:\"angled-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";}}s:13:\"angled-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";}}s:20:\"angled-content-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"angled-content-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"angled-content-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"angled-content-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"angled-content-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"angled-content-modal/slide6.jpg\";}}s:13:\"big-bold-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-menu/slide1.jpg\";}}s:15:\"big-bold-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-header/slide1.jpg\";}}s:16:\"big-bold-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"big-bold-content/slide1.jpg\";}}s:13:\"big-bold-blog\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-blog/slide1.jpg\";}}s:18:\"big-bold-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"big-bold-highlight/slide1.jpg\";}}s:15:\"big-bold-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-footer/slide1.jpg\";}}s:7:\"Retouch\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"Retouch/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"Retouch/slide3.jpg\";}}s:11:\"tech-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"tech-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"tech-slider/slide3.jpg\";}}s:11:\"peak-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";}}s:10:\"peak-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";}}s:14:\"peak-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";}}s:11:\"peak-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";}}s:17:\"portfolio-welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";}}s:15:\"portfolio-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";}}s:21:\"portfolio-works-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";}}s:23:\"portfolio-works-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";}}s:18:\"portfolio-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";}}s:18:\"App-Studio-Welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";}}s:19:\"App-Studio-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";}}s:16:\"App-Studio-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";}}s:19:\"App-Studio-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";}}s:14:\"cube-animation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cube-animation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cube-animation/slide3.jpg\";}}s:10:\"basic-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";}}s:12:\"basic-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";}}s:13:\"basic-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";}}s:14:\"basic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-carousel/slide5.jpg\";}}s:13:\"basic-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";}}s:10:\"basic-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";}}s:17:\"basic-video-block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";}}s:12:\"basic-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";}}s:14:\"basic-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:25:\"basic-lightbox/slide6.jpg\";}}s:13:\"nature-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"nature-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"nature-slider/slide3.jpg\";}}s:11:\"art-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"art-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"art-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"art-gallery/slide4.jpg\";}}s:19:\"Construction-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";}}s:17:\"Construction-Home\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Construction-Home/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Construction-Home/slide3.jpg\";}}s:21:\"Construction-Projects\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";}}s:20:\"Construction-History\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";}}s:21:\"Construction-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";}}s:21:\"Construction-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";}}s:21:\"404-Error-Space-Theme\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";}}s:17:\"landing-page-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";}}s:21:\"landing-page-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";}}s:20:\"landing-page-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";}}s:20:\"landing-page-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";}}s:25:\"landing-page-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";}}s:27:\"landing-page-call-to-action\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";}}s:17:\"landing-page-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";}}s:19:\"landing-page-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";}}s:24:\"landing-page-price-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";}}s:18:\"energy-drinks-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"energy-drinks-hero/slide1.jpg\";}}s:19:\"energy-drinks-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-about/slide1.jpg\";}}s:21:\"energy-drinks-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"energy-drinks-product/slide1.jpg\";}}s:23:\"energy-drinks-product-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-2/slide1.jpg\";}}s:23:\"energy-drinks-product-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-3/slide1.jpg\";}}s:19:\"energy-drinks-order\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-order/slide1.jpg\";}}s:20:\"energy-drinks-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"energy-drinks-footer/slide1.jpg\";}}s:19:\"energy-drinks-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-modal/slide1.jpg\";}}s:16:\"Corporate-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";}}s:24:\"Corporate-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";}}s:15:\"Corporate-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";}}s:19:\"Corporate-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";}}s:15:\"Corporate-Chart\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";}}s:14:\"Corporate-News\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:16:\"Corporate-Hiring\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:22:\"Corporate-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide3.jpg\";}}s:15:\"Corporate-Store\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";}}s:17:\"Corporate-Support\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";}}s:14:\"Corporate-Team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";}}s:33:\"Corporate-Selected-Projects-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";}}s:27:\"Corporate-Selected-Projects\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide7.jpg\";}}s:17:\"Corporate-Clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";}}s:20:\"Corporate-Text-Block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";}}s:20:\"Corporate-Mobile-App\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";}}s:18:\"Corporate-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";}}s:16:\"Corporate-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";}}s:23:\"Corporate-Scroll-To-Top\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";}}s:14:\"geometric-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-menu/slide1.jpg\";}}s:14:\"geometric-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-hero/slide1.jpg\";}}s:14:\"geometric-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-grid/slide1.jpg\";}}s:15:\"geometric-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-about/slide1.jpg\";}}s:15:\"geometric-texts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-texts/slide1.jpg\";}}s:18:\"geometric-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-services/slide1.jpg\";}}s:17:\"geometric-texts-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"geometric-texts-2/slide1.jpg\";}}s:22:\"geometric-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"geometric-testimonials/slide1.jpg\";}}s:16:\"geometric-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"geometric-footer/slide1.jpg\";}}s:18:\"geometric-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"geometric-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"geometric-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"geometric-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"geometric-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"geometric-lightbox/slide6.jpg\";}}s:11:\"brutal-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";}}s:11:\"brutal-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";}}s:12:\"brutal-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";}}s:16:\"brutal-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";}}s:15:\"brutal-projects\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-projects/slide4.jpg\";}}s:15:\"brutal-services\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-services/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-services/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-services/slide4.jpg\";}}s:14:\"brutal-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";}}s:13:\"brutal-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";}}s:13:\"Church-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";}}s:22:\"Church-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide3.jpg\";}}s:12:\"Church-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";}}s:14:\"Church-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";}}s:20:\"Church-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";}}s:16:\"Church-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";}}s:13:\"Church-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";}}s:15:\"Church-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";}}s:13:\"Church-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";}}s:19:\"Church-Light-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";}}s:28:\"Church-Light-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide3.jpg\";}}s:18:\"Church-Light-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";}}s:20:\"Church-Light-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";}}s:26:\"Church-Light-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";}}s:22:\"Church-Light-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";}}s:19:\"Church-Light-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";}}s:21:\"Church-Light-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";}}s:19:\"Church-Light-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";}}s:13:\"rockable-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";}}s:13:\"rockable-hero\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"rockable-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"rockable-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"rockable-hero/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"rockable-hero/slide5.jpg\";}}s:15:\"rockable-lineup\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";}}s:17:\"rockable-lineup-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";}}s:22:\"rockable-gallery-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";}}s:16:\"rockable-gallery\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"rockable-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"rockable-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"rockable-gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"rockable-gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"rockable-gallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"rockable-gallery/slide7.jpg\";}}s:17:\"rockable-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";}}s:15:\"rockable-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";}}s:21:\"rockable-detail-modal\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}}s:23:\"rockable-detail-modal-2\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}}s:27:\"real-estate-showcase-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide3.jpg\";}}s:16:\"isometric-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"isometric-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"isometric-slider/slide3.jpg\";}}s:17:\"E-Commerce-Slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide3.jpg\";}}s:23:\"E-Commerce-Slider-Modal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide3.jpg\";}}s:27:\"Woo-Commerce-Slider-Dynamic\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide3.jpg\";}}s:15:\"blooming-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";}}s:14:\"blooming-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";}}s:18:\"blooming-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";}}s:22:\"blooming-wedding-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";}}s:25:\"blooming-wedding-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide6.jpg\";}}s:21:\"blooming-wedding-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";}}s:22:\"blooming-parties-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";}}s:25:\"blooming-parties-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide6.jpg\";}}s:21:\"blooming-parties-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";}}s:22:\"blooming-funeral-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";}}s:23:\"blooming-funeral-slider\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide6.jpg\";}}s:21:\"blooming-funeral-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";}}s:16:\"blooming-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";}}s:13:\"particle-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";}}s:17:\"bubble-morph-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";}}s:13:\"parallax-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";}}s:10:\"video-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";}}s:14:\"ken-burns-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";}}s:21:\"basic-hero-collection\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"basic-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"basic-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"basic-hero-collection/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"basic-hero-collection/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"basic-hero-collection/slide6.jpg\";}}s:19:\"launching-very-soon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";}}s:18:\"Under-Construction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";}}s:15:\"Particle-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";}}s:17:\"Particle-Effect-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";}}s:10:\"stark-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";}}s:12:\"stark-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";}}s:13:\"stark-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";}}s:14:\"stark-carousel\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"stark-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"stark-carousel/slide3.jpg\";}}s:15:\"stark-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";}}s:22:\"stark-portfolio-detail\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide6.jpg\";}}s:13:\"stark-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";}}s:12:\"stark-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";}}s:16:\"stark-newsletter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";}}s:15:\"big-summer-sale\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"big-summer-sale/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"big-summer-sale/slide3.jpg\";}}s:18:\"traveller-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"traveller-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"traveller-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"traveller-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"traveller-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"traveller-carousel/slide6.jpg\";}}s:16:\"project-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"project-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"project-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"project-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"project-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"project-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"project-carousel/slide7.jpg\";}}s:13:\"news-carousel\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"news-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"news-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"news-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"news-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:24:\"news-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:24:\"news-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:24:\"news-carousel/slide8.jpg\";}}s:10:\"story-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";}}s:12:\"story-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";}}s:13:\"story-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";}}s:15:\"story-content-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";}}s:13:\"story-block-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";}}s:13:\"story-block-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";}}s:15:\"story-content-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";}}s:13:\"story-block-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";}}s:15:\"story-content-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";}}s:12:\"mini-website\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"mini-website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"mini-website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"mini-website/slide4.jpg\";}}s:13:\"food-delivery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";}}s:25:\"slider-with-illustrations\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"slider-with-illustrations/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"slider-with-illustrations/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"slider-with-illustrations/slide4.jpg\";}}s:8:\"zen-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";}}s:10:\"zen-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";}}s:9:\"zen-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";}}s:12:\"zen-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";}}s:9:\"zen-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";}}s:11:\"zen-pricing\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";}}s:22:\"zen-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";}}s:16:\"zen-testimonials\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"zen-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"zen-testimonials/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"zen-testimonials/slide4.jpg\";}}s:10:\"zen-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";}}s:17:\"Paintbrush-Effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide3.jpg\";}}s:25:\"black-friday-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";}}s:12:\"charity-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";}}s:14:\"charity-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"charity-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"charity-header/slide3.jpg\";}}s:15:\"charity-mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";}}s:13:\"charity-funds\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";}}s:15:\"charity-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";}}s:15:\"charity-stories\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";}}s:16:\"charity-worldmap\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";}}s:19:\"charity-large-image\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";}}s:16:\"charity-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";}}s:12:\"charity-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";}}s:14:\"charity-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";}}s:21:\"cinematic-hero-titles\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide3.jpg\";}}s:23:\"design-dna-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";}}s:27:\"food-delivery-lottie-scroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";}}s:20:\"food-recipe-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"food-recipe-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"food-recipe-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"food-recipe-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"food-recipe-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"food-recipe-carousel/slide6.jpg\";}}s:17:\"food-recipe-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"food-recipe-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"food-recipe-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"food-recipe-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"food-recipe-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"food-recipe-modal/slide6.jpg\";}}s:27:\"corporate-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";}}s:18:\"corporate-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-carousel/slide5.jpg\";}}s:18:\"corporate-lightbox\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-lightbox/slide5.jpg\";}}s:23:\"cyber-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";}}s:14:\"cyber-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cyber-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cyber-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"cyber-carousel/slide4.jpg\";}}s:23:\"cyber-carousel-lightbox\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide4.jpg\";}}s:24:\"woocommerce-carousel-one\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";}}s:31:\"woocommerce-carousel-one-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide6.jpg\";}}s:24:\"woocommerce-carousel-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";}}s:31:\"woocommerce-carousel-two-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide6.jpg\";}}s:26:\"woocommerce-feature-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";}}s:33:\"woocommerce-feature-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide6.jpg\";}}s:17:\"woo-liquid-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";}}s:32:\"woocommerce-liquid-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide6.jpg\";}}s:15:\"woo-slider-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";}}s:22:\"woo-slider-pack-static\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";}}s:24:\"creative-hero-collection\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"creative-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"creative-hero-collection/slide3.jpg\";}}s:19:\"photographer-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"photographer-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"photographer-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"photographer-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"photographer-slider/slide5.jpg\";}}s:17:\"realestate-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"realestate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"realestate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"realestate-slider/slide4.jpg\";}}s:19:\"saas-product-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"saas-product-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"saas-product-slider/slide3.jpg\";}}s:27:\"cinematic-wildlife-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";}}s:25:\"cinematic-wildlife-slider\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide7.jpg\";}}s:24:\"cinematic-wildlife-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide7.jpg\";}}s:32:\"gaming-stats-presentation-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide5.jpg\";}}s:15:\"coffee-flavours\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"coffee-flavors/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"coffee-flavors/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"coffee-flavors/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"coffee-flavors/slide5.jpg\";}}s:15:\"showreel-slider\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"showreel-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"showreel-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"showreel-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"showreel-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"showreel-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"showreel-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:26:\"showreel-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:26:\"showreel-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:27:\"showreel-slider/slide10.jpg\";}}s:16:\"visual-art-forms\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"visual-art-forms/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"visual-art-forms/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"visual-art-forms/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"visual-art-forms/slide5.jpg\";}}s:14:\"bg-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"bg-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"bg-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"bg-effect-hero/slide4.jpg\";}}s:9:\"cyberfunk\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"cyberfunk/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"cyberfunk/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"cyberfunk/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"cyberfunk/slide5.jpg\";}}s:21:\"motion-blur-portfolio\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide8.jpg\";}}s:18:\"portal-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"portal-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"portal-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"portal-effect-hero/slide4.jpg\";}}s:15:\"winery-timeline\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"winery-timeline/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"winery-timeline/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"winery-timeline/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"winery-timeline/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"winery-timeline/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"winery-timeline/slide7.jpg\";}}s:25:\"smart-living-one-pager-v1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V1.jpg\";}}s:25:\"smart-living-one-pager-v2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V2.jpg\";}}s:25:\"smart-living-one-pager-v3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V3.jpg\";}}s:6:\"menu-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";}}s:14:\"onepage-hero-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";}}s:6:\"about1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"about1/slide1.jpg\";}}s:9:\"services1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"services1/slide1.jpg\";}}s:9:\"projects1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"projects1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"projects1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"projects1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"projects1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:20:\"projects1/slide6.jpg\";}}s:8:\"footer-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";}}s:23:\"explainer-block-1-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";}}s:23:\"explainer-block-1-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";}}s:16:\"projects-modal-1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-1/slide6.jpg\";}}s:6:\"menu-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";}}s:6:\"hero-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";}}s:10:\"services-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";}}s:7:\"about-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";}}s:10:\"projects-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"projects-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"projects-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:21:\"projects-2/slide6.jpg\";}}s:7:\"footer2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";}}s:23:\"explainer-block-2-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";}}s:23:\"explainer-block-2-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";}}s:16:\"projects-modal-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-2/slide6.jpg\";}}s:6:\"menu-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";}}s:6:\"hero-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:17:\"hero-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:17:\"hero-3/slide3.jpg\";}}s:7:\"about-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";}}s:10:\"services-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";}}s:10:\"projects-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-3/slide3.jpg\";}}s:8:\"footer-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";}}s:23:\"explainer-block-3-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";}}s:23:\"explainer-block-3-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";}}s:16:\"projects-modal-3\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-3/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-3/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-3/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-3/slide6.jpg\";}}s:25:\"urban-street-skate-slider\";a:12:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide10.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide11.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide12.jpg\";}}s:13:\"yummy-burgers\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"yummy-burgers/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"yummy-burgers/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"yummy-burgers/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"yummy-burgers/slide5.jpg\";}}s:37:\"tattoo-event-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"packages/tattoo_event_website_package.jpg\";}}s:24:\"tattoo-event-hero-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide3.jpg\";}}s:18:\"tattoo-event-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";}}s:20:\"tattoo-event-artists\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"tattoo-event-artists/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"tattoo-event-artists/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"tattoo-event-artists/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"tattoo-event-artists/slide5.jpg\";}}s:21:\"tattoo-event-schedule\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide3.jpg\";}}s:17:\"tattoo-event-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";}}s:19:\"tattoo-event-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";}}s:24:\"startup-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"packages/startup-website-template.jpg\";}}s:12:\"startup-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-menu/slide1.jpg\";}}s:12:\"startup-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-hero/slide1.jpg\";}}s:13:\"startup-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"startup-about/slide1.jpg\";}}s:18:\"startup-features-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"startup-features-1/slide1.jpg\";}}s:18:\"startup-features-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"startup-features-2/slide1.jpg\";}}s:12:\"startup-team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-team/slide1.jpg\";}}s:15:\"startup-reviews\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"startup-reviews/slide1.jpg\";}}s:11:\"startup-cta\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"startup-cta/slide1.jpg\";}}s:14:\"startup-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"startup-footer/slide1.jpg\";}}s:19:\"startup-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"startup-video-modal/slide1.jpg\";}}s:32:\"christmas-gift-card-landing-page\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"packages/christmas-gift-card-landing-page.jpg\";}}s:24:\"christmas-landing-page-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"christmas-gift-card-landing-page/slide1.jpg\";}}s:24:\"christmas-landing-page-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"christmas-landing-page-2/slide1.jpg\";}}s:12:\"image-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"image-slider/slide-1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"image-slider/slide-2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"image-slider/slide-3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"image-slider/slide-4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"image-slider/slide-5.jpg\";}}s:17:\"full-width-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"full-width-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"full-width-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"full-width-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"full-width-slider/slide4.jpg\";}}s:20:\"app-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/app-website-template.jpg\";}}s:16:\"app-website-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-menu/slide1.jpg\";}}s:16:\"app-website-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-hero/slide1.jpg\";}}s:20:\"app-download-buttons\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"app-download-buttons/slide1.jpg\";}}s:17:\"app-website-about\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"app-website-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"app-website-about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"app-website-about/slide3.jpg\";}}s:20:\"app-website-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"app-website-features/slide1.jpg\";}}s:21:\"app-website-video-cta\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"app-website-video-cta/slide1.jpg\";}}s:23:\"app-website-screenshots\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"app-website-screenshots/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"app-website-screenshots/slide2.jpg\";}}s:22:\"app-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"app-testimonials-title/slide1.jpg\";}}s:24:\"app-website-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"app-website-testimonials/slide1.jpg\";}}s:16:\"app-website-team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-team/slide1.jpg\";}}s:18:\"app-website-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"app-website-footer/slide1.jpg\";}}s:15:\"app-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"app-video-modal/slide1.jpg\";}}}}','yes'),(369,'revslider_checktables','1','yes'),(370,'revslider_table_version','1.0.5','yes'),(371,'revslider-global-settings','a:0:{}','yes'),(372,'revslider_update_version','5.1.1','yes'),(373,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(375,'revslider-valid-notice','false','yes'),(376,'avada_revslider_version','5.1.4','yes'),(399,'_site_transient_timeout_available_translations','1464824056','yes'),(400,'_site_transient_available_translations','a:81:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-10 15:55:55\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-13 14:44:00\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.5.2/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-12 22:48:01\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-11 22:42:10\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-03 14:05:41\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-06-01 06:39:12\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-19 23:16:37\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-11 06:38:51\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.4.3\";s:7:\"updated\";s:19:\"2016-02-16 15:34:57\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.3/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-11 18:32:36\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:12:\"Čeština‎\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-11 14:21:06\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-11 15:42:12\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Forts&#230;t\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-12 20:03:25\";s:12:\"english_name\";s:23:\"(Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/4.5.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-06-01 09:24:14\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-06-01 09:24:44\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.5.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-12 19:26:41\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-25 18:37:03\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-13 06:26:11\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-28 11:29:02\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-10 05:23:57\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-26 02:00:05\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-13 12:51:07\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-11 10:58:49\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-28 13:08:25\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/es_VE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-16 17:35:43\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-12 21:06:55\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-13 12:43:00\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/es_GT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-19 16:39:25\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:6:\"4.3-RC\";s:7:\"updated\";s:19:\"2015-08-04 06:10:33\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.3-RC/es_CO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-28 13:34:35\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-19 21:32:12\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/es_AR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-12 11:11:25\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-23 22:05:23\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-27 18:29:46\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-10 18:44:50\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-11 07:33:47\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-29 19:30:46\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-06-01 09:16:29\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.3.4\";s:7:\"updated\";s:19:\"2015-09-24 15:25:30\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.4/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-22 23:06:30\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-16 13:14:11\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-13 11:24:52\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-07 12:13:44\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-03 06:34:38\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-04 07:13:54\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-06 12:11:53\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-30 15:18:26\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-31 08:01:17\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-27 00:36:15\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-11 09:29:35\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-08 02:07:38\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-10 06:34:16\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-12 13:55:28\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-16 06:42:31\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.4.3\";s:7:\"updated\";s:19:\"2016-01-28 05:41:39\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.3/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.11\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.11/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-13 12:35:50\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-13 08:12:50\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.4.3\";s:7:\"updated\";s:19:\"2016-01-20 13:35:50\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.4.3/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-11 07:36:04\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-25 06:38:00\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.5.2/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-18 16:39:27\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.11\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.11/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-17 23:58:57\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-27 18:35:51\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-06-01 05:36:12\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-13 18:04:14\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-29 09:53:12\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-11-26 00:00:18\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-09 09:01:28\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-10 08:00:57\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-14 14:47:49\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-22 14:05:41\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-11-27 15:51:36\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-21 01:31:12\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-31 09:50:18\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-05-23 09:33:59\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.2/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-09 01:01:25\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-17 03:29:01\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2016-04-12 09:08:07\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','yes'),(401,'WPLANG','','yes'),(406,'wpb_fp_general','','yes'),(407,'wpb_fp_advanced','','yes'),(408,'wpb_fp_style','a:5:{s:21:\"wpb_fp_primary_color_\";s:7:\"#21cdec\";s:20:\"wpb_fp_popup_effect_\";s:11:\"mfp-zoom-in\";s:20:\"wpb_fp_hover_effect_\";s:12:\"effect-layla\";s:23:\"wpb_fp_title_font_size_\";s:2:\"20\";s:18:\"wpb_fp_custom_css_\";s:0:\"\";}','yes'),(414,'_transient_timeout_avada_dynamic_css_101','1464817745','no'),(416,'wpb_fp_portfolio_cat_children','a:0:{}','yes'),(417,'_transient_timeout_avada_dynamic_css_103','1464817772','no'),(431,'_transient_timeout_avada_dynamic_css_109','1682437851','no'),(433,'_transient_timeout_avada_dynamic_css_111','1682396219','no'),(435,'_transient_timeout_avada_dynamic_css_110','1682474529','no'),(437,'_transient_timeout_avada_dynamic_css_1','1682658113','no'),(439,'_transient_timeout_avada_dynamic_css_119','1682396208','no'),(441,'_transient_timeout_avada_dynamic_css_118','1682396238','no'),(443,'_transient_timeout_avada_dynamic_css_120','1682411342','no'),(486,'_transient_timeout_avada_dynamic_css_129','1682451714','no'),(527,'revslider-connection','1','yes'),(528,'_site_transient_timeout_browser_3d2d3e964eca2a13d587108c4bc2faea','1465724378','yes'),(529,'_site_transient_browser_3d2d3e964eca2a13d587108c4bc2faea','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"51.0.2704.79\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(536,'_transient_timeout_avada_dynamic_css_128','1682396186','no'),(548,'_transient_timeout_avada_dynamic_css_160','1682396246','no'),(550,'_transient_timeout_avada_dynamic_css_161','1682396189','no'),(552,'_transient_timeout_avada_dynamic_css_158','1682397552','no'),(554,'_transient_timeout_avada_dynamic_css_164','1682396225','no'),(556,'_transient_timeout_avada_dynamic_css_136','1682451114','no'),(558,'_transient_timeout_avada_dynamic_css_142','1682306497','no'),(605,'revslider-latest-version','6.5.14','yes'),(606,'revslider-stable-version','4.2.0','yes'),(607,'revslider-notices','a:1:{i:0;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:546:\"<div style=\"display: block; background: #fff;text-align: center; height: 250px;\"><a href=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium\" target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: cover; background-size: cover; opacity: 1; width: 960px; height: 250px; display: inline-block;\" muted=\"\" loop=\"\" autoplay=\"\" preload=\"auto\"><source src=\"https://sliderrevolution.com/wp-content/uploads/2021/07/adminpremiumvid4.mp4\" type=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:12:\"TPRSV6511-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}}','yes'),(608,'revslider-dashboard','a:0:{}','yes'),(648,'_site_transient_timeout_browser_1dad2331d0a3ad186710ced34586ff50','1466339669','yes'),(649,'_site_transient_browser_1dad2331d0a3ad186710ced34586ff50','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'),(672,'_transient_timeout_avada_dynamic_css_182','1682673289','no'),(846,'_site_transient_timeout_browser_fb5ae4c281981ca10a522b6e1bdcd161','1467370139','yes'),(847,'_site_transient_browser_fb5ae4c281981ca10a522b6e1bdcd161','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'),(852,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1466808546','no');
INSERT INTO `wp_options` VALUES (853,'_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:3:{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, 22 Jun 2016 16:40: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:\"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.6-alpha-37801\";s:7:\"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:3:{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:\"\";}}}}}i:1;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:3:{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:\"\";}}}}}i:2;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 4.5.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2016/04/wordpress-4-5-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Apr 2016 18:58: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: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.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=4269\";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:358:\"After about six million downloads of WordPress 4.5, we are pleased to announce the immediate availability of WordPress 4.5.1, a maintenance release. This release fixes 12 bugs, chief among them a singular class issue that broke sites based on the Twenty Eleven theme, an incompatibility between certain Chrome versions and the visual editor, and an [&#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:2134:\"<p>After about six million downloads of WordPress 4.5, we are pleased to announce the immediate availability of WordPress 4.5.1, a maintenance release.</p>\n<p>This release fixes 12 bugs, chief among them a singular class issue that broke sites based on the Twenty Eleven theme, an incompatibility between certain Chrome versions and the visual editor, and an Imagick bug that could break media uploads. This maintenance release fixes a total of 12 bugs in Version 4.5. <span style=\"line-height: 1.5\">For more information, see the </span><a style=\"line-height: 1.5\" href=\"https://codex.wordpress.org/Version_4.5.1\">release notes</a><span style=\"line-height: 1.5\"> or consult the </span><a style=\"line-height: 1.5\" href=\"https://core.trac.wordpress.org/log/branches/4.5?rev=37295&amp;stop_rev=37182\">list of changes</a><span style=\"line-height: 1.5\">.</span></p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.5.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.5.1.</p>\n<p>Thanks to everyone who contributed to 4.5.1:</p>\n<p><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</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/helen\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, and <a href=\"https://profiles.wordpress.org/WiZZarD_\">Pieter</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:\"\";}}}}}i:3;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress 4.5 “Coleman”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/news/2016/04/coleman/\";s: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, 12 Apr 2016 19:15: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: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.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=4203\";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:383:\"Version 4.5 of WordPress, named “Coleman” in honor of jazz saxophonist Coleman Hawkins, is available for download or update in your WordPress dashboard. New features in 4.5 help streamline your workflow, whether you’re writing or building your site. Editing Improvements Inline Linking Stay focused on your writing with a less distracting interface that keeps you 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:13:\"Mike Schroder\";s: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:27072:\"<p>Version 4.5 of WordPress, named “Coleman” in honor of jazz saxophonist Coleman Hawkins, is available for download or update in your WordPress dashboard. New features in 4.5 help streamline your workflow, whether you’re writing or building your site.</p>\n<p><iframe width=\'692\' height=\'388\' src=\'https://videopress.com/embed/scFdjVo6?hd=0\' 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\">Editing Improvements</h2>\n<p><img class=\"aligncenter size-full wp-image-4220\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-inlinelinks.png?resize=692%2C277&#038;ssl=1\" alt=\"illustration-short-inlinelinks\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-inlinelinks.png?w=1000&amp;ssl=1 1000w, https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-inlinelinks.png?resize=300%2C120&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-inlinelinks.png?resize=768%2C307&amp;ssl=1 768w\" sizes=\"(max-width: 692px) 100vw, 692px\" data-recalc-dims=\"1\" /></p>\n<h3>Inline Linking</h3>\n<p>Stay focused on your writing with a less distracting interface that keeps you in place and allows you to easily link to your content.</p>\n<p><img class=\"aligncenter size-full wp-image-4265\" src=\"https://i0.wp.com/wordpress.org/news/files/2016/04/editing-shortcuts-big.gif?resize=692%2C415&#038;ssl=1\" alt=\"editing-shortcuts-big\" data-recalc-dims=\"1\" /></p>\n<h3>Formatting Shortcuts</h3>\n<p>Do you enjoy using formatting shortcuts for lists and headings? Now they’re even more useful, with horizontal lines and <code>&lt;code&gt;</code>.</p>\n<hr />\n<h2 style=\"text-align: center\">Customization Improvements</h2>\n<p><img class=\"aligncenter size-full wp-image-4221\" src=\"https://i0.wp.com/wordpress.org/news/files/2016/04/illustration-short-responsive-preview.png?resize=692%2C277&#038;ssl=1\" alt=\"illustration-short-responsive-preview\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2016/04/illustration-short-responsive-preview.png?w=1000&amp;ssl=1 1000w, https://i0.wp.com/wordpress.org/news/files/2016/04/illustration-short-responsive-preview.png?resize=300%2C120&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2016/04/illustration-short-responsive-preview.png?resize=768%2C307&amp;ssl=1 768w\" sizes=\"(max-width: 692px) 100vw, 692px\" data-recalc-dims=\"1\" /></p>\n<h3>Live Responsive Previews</h3>\n<p>Make sure your site looks great on all screens! Preview mobile, tablet, and desktop views directly in the customizer.</p>\n<p><img class=\"aligncenter wp-image-4239 size-full\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-customlogo-whitespace.png?resize=692%2C304&#038;ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-customlogo-whitespace.png?w=1000&amp;ssl=1 1000w, https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-customlogo-whitespace.png?resize=300%2C132&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/04/illustration-short-customlogo-whitespace.png?resize=768%2C338&amp;ssl=1 768w\" sizes=\"(max-width: 692px) 100vw, 692px\" data-recalc-dims=\"1\" /></p>\n<h3>Custom Logos</h3>\n<p>Themes can now support logos for your business or brand. Try it out with Twenty Sixteen and Twenty Fifteen in the Site Identity section of the customizer.</p>\n<hr />\n<h2 style=\"text-align: center\">Under the Hood</h2>\n<div class=\"under-the-hood three-col\">\n<div class=\"col\">\n<h3>Smart Image Resizing</h3>\n<p>Generated images now load up to 50% faster with no noticeable quality loss. <a href=\"https://make.wordpress.org/core/2016/03/12/performance-improvements-for-images-in-wordpress-4-5/\">It’s really cool</a>.</p>\n</div>\n<div class=\"col\">\n<h3>Selective Refresh</h3>\n<p>The customizer now supports a <a href=\"https://make.wordpress.org/core/2016/02/16/selective-refresh-in-the-customizer/\">comprehensive framework</a> for rendering parts of the preview without rewriting your PHP code in JavaScript.</p>\n</div>\n<div class=\"col\">\n<h3>Script Loader Improvements</h3>\n<p>Better support has been added for script header/footer dependencies. New <code><a href=\"https://make.wordpress.org/core/2016/03/08/enhanced-script-loader-in-wordpress-4-5/\">wp_add_inline_script()</a></code> enables adding extra code to registered scripts.</p>\n<h3>Better Embed Templates</h3>\n<p>Embed templates have been split into parts and can be <a href=\"https://make.wordpress.org/core/2016/03/11/embeds-changes-in-wordpress-4-5/\">directly overridden by themes</a> via the template hierarchy.</p>\n<h3>JavaScript Library Updates</h3>\n<p>jQuery 1.12.3, jQuery Migrate 1.4.0, Backbone 1.2.3, and Underscore 1.8.3 are bundled.</p>\n</div>\n</div>\n<div class=\"under-the-hood two-col\"></div>\n<hr />\n<h2 style=\"text-align: center\">The Crew</h2>\n<p><a class=\"alignleft\" href=\"https://profiles.wordpress.org/mikeschroder\"><img src=\"https://www.gravatar.com/avatar/76424a001dc6b3ebb4faca0c567800c4?d=mm&amp;s=180&amp;r=G\" alt=\"Mike Schroder\" width=\"80\" height=\"80\" /></a>This release was led by <a href=\"https://getsource.net\">Mike Schroder</a>, backed up by <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a> as Release Deputy, <a href=\"https://choycedesign.com/\">Mel Choyce</a> as Release Design Lead, and the help of these fine individuals. There are <span style=\"font-weight: 400\">298</span> contributors with props in this release. Pull up some Coleman Hawkins on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/mercime\">@mercime</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/uglyrobot\">Aaron Edwards</a>, <a href=\"https://profiles.wordpress.org/ahockley\">Aaron Hockley</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abiralneupane\">Abiral Neupane</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/aidanlane\">aidanlane</a>, <a href=\"https://profiles.wordpress.org/ambrosey\">Alice Brosey</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/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/andizer\">Andy</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/apaliku\">apaliku</a>, <a href=\"https://profiles.wordpress.org/aramzs\">Aram Zucker-Scharff</a>, <a href=\"https://profiles.wordpress.org/ashmatadeen\">ash.matadeen</a>, <a href=\"https://profiles.wordpress.org/bappidgreat\">Ashok Kumar Nath</a>, <a href=\"https://profiles.wordpress.org/bandonrandon\">BandonRandon</a>, <a href=\"https://profiles.wordpress.org/barryceelen\">Barry Ceelen</a>, <a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/berengerzyla\">berengerzyla</a>, <a href=\"https://profiles.wordpress.org/neoxx\">Bernhard Riedl</a>, <a href=\"https://profiles.wordpress.org/thisisit\">Bhushan S. Jawle</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/williamsba1\">Brad Williams</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/thebrandonallen\">Brandon Allen</a>, <a href=\"https://profiles.wordpress.org/bhubbard\">Brandon Hubbard</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/borgesbruno\">Bruno Borges</a>, <a href=\"https://profiles.wordpress.org/chmac\">Callum Macdonald</a>, <a href=\"https://profiles.wordpress.org/camikaos\">Cami Kaos</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/mackensen\">Charles Fulton</a>, <a href=\"https://profiles.wordpress.org/chetanchauhan\">Chetan Chauhan</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrico\">ChriCo</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">Chris Christoff</a>, <a href=\"https://profiles.wordpress.org/chris_dev\">Chris Mok</a>, <a href=\"https://profiles.wordpress.org/christophherr\">christophherr</a>, <a href=\"https://profiles.wordpress.org/ckoerner\">ckoerner</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/compute\">Compute</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">d4z_c0nf</a>, <a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/scarinessreported\">Daniel Bailey</a>, <a href=\"https://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>, <a href=\"https://profiles.wordpress.org/diddledan\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/danielpataki\">danielpataki</a>, <a href=\"https://profiles.wordpress.org/dvankooten\">Danny van Kooten</a>, <a href=\"https://profiles.wordpress.org/thewanderingbrit\">Dave Clements</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/dbrumbaugh10up\">David Brumbaugh</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dnewton\">David Newton</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</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/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dossy\">Dossy Shiobara</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/drebbitsweb\">Dreb Bits</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duaneblake\">duaneblake</a>, <a href=\"https://profiles.wordpress.org/kucrut\">Dzikri Aziz</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/codex-m\">Emerson Maningo</a>, <a href=\"https://profiles.wordpress.org/enej\">enej</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/ericdaams\">Eric Daams</a>, <a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/faishal\">faishal</a>, <a href=\"https://profiles.wordpress.org/fantasyworld\">fantasyworld</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/finnj\">finnj</a>, <a href=\"https://profiles.wordpress.org/firebird75\">firebird75</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fusillicode\">fusillicode</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gblsm\">gblsm</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/garusky\">Giuseppe Mamone</a>, <a href=\"https://profiles.wordpress.org/jubstuff\">Giustino Borzacchiello</a>, <a href=\"https://profiles.wordpress.org/grantpalin\">Grant Palin</a>, <a href=\"https://profiles.wordpress.org/groovecoder\">groovecoder</a>, <a href=\"https://profiles.wordpress.org/wido\">Guido Scialfa</a>, <a href=\"https://profiles.wordpress.org/bordoni\">Gustavo Bordoni</a>, <a href=\"https://profiles.wordpress.org/hakre\">hakre</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/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke\">Hugh Lashbrooke</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/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/iamntz\">Ionut Staicu</a>, <a href=\"https://profiles.wordpress.org/ivankristianto\">Ivan Kristianto</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jadpm\">jadpm</a>, <a href=\"https://profiles.wordpress.org/jamesdigioia\">James DiGioia</a>, <a href=\"https://profiles.wordpress.org/jason_the_adams\">Jason</a>, <a href=\"https://profiles.wordpress.org/jaspermdegroot\">Jasper de Groot</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeffpyebrookcom\">Jeffrey Schutzman</a>, <a href=\"https://profiles.wordpress.org/jmdodd\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/ardathksheyna\">Jess G.</a>, <a href=\"https://profiles.wordpress.org/boluda\">Joan Boluda</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/joelerr\">joelerr</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/johnnypea\">JohnnyPea</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/keraweb\">Jory Hogeveen</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/joshlevinson\">Josh Levinson</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/jrchamp\">jrchamp</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</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/juliobox\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/katieburch\">katieburch</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/kiranpotphode\">Kiran Potphode</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</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/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/krissiev\">KrissieV</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/leemon\">leemon</a>, <a href=\"https://profiles.wordpress.org/layotte\">Lew Ayotte</a>, <a href=\"https://profiles.wordpress.org/liamdempsey\">Liam Dempsey</a>, <a href=\"https://profiles.wordpress.org/luan-ramos\">Luan Ramos</a>, <a href=\"https://profiles.wordpress.org/luciole135\">luciole135</a>, <a href=\"https://profiles.wordpress.org/lpawlik\">Lukas Pawlik</a>, <a href=\"https://profiles.wordpress.org/latz\">Lutz Schr&#246;er</a>, <a href=\"https://profiles.wordpress.org/madvic\">madvic</a>, <a href=\"https://profiles.wordpress.org/marcochiesi\">Marco Chiesi</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/nofearinc\">Mario Peshev</a>, <a href=\"https://profiles.wordpress.org/mark8barnes\">Mark Barnes</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/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/gitlost\">Martin Burke</a>, <a href=\"https://profiles.wordpress.org/mattfelten\">Matt Felten</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattgeri\">MattGeri</a>, <a href=\"https://profiles.wordpress.org/maweder\">maweder</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mcapybara\">mcapybara</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/mensmaximus\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/micropat\">micropat</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Mika Epstein</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikejolley\">Mike Jolley</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/usermrpapa\">Mr Papa</a>, <a href=\"https://profiles.wordpress.org/mwidmann\">mwidmann</a>, <a href=\"https://profiles.wordpress.org/nexurium\">nexurium</a>, <a href=\"https://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>, <a href=\"https://profiles.wordpress.org/nicdford\">Nic Ford</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </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/oaron\">oaron</a>, <a href=\"https://profiles.wordpress.org/overclokk\">overclokk</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/obrienlabs\">Pat O\'Brien</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pauldewouters\">Paul de Wouters</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/perezlabs\">Perez Labs</a>, <a href=\"https://profiles.wordpress.org/gungeekatx\">Pete Nelson</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/cadeyrn\">petermolnar</a>, <a href=\"https://profiles.wordpress.org/walbo\">Petter Walb&#248; Johnsg&#229;rd</a>, <a href=\"https://profiles.wordpress.org/wizzard_\">Pieter</a>, <a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/ptahdunbar\">Pirate Dunbar</a>, <a href=\"https://profiles.wordpress.org/prettyboymp\">prettyboymp</a>, <a href=\"https://profiles.wordpress.org/profforg\">Profforg</a>, <a href=\"https://profiles.wordpress.org/programmin\">programmin</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahalaboulfeth\">rahal.aboulfeth</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>, <a href=\"https://profiles.wordpress.org/rickalee\">Ricky Lee Whittemore</a>, <a href=\"https://profiles.wordpress.org/ritteshpatel\">Ritesh Patel</a>, <a href=\"https://profiles.wordpress.org/rob\">rob</a>, <a href=\"https://profiles.wordpress.org/rogerhub\">Roger Chen</a>, <a href=\"https://profiles.wordpress.org/romsocial\">RomSocial</a>, <a href=\"https://profiles.wordpress.org/ruudjoyo\">Ruud Laan</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sagarjadhav\">Sagar Jadhav</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/salvoaranzulla\">salvoaranzulla</a>, <a href=\"https://profiles.wordpress.org/samhotchkiss\">Sam Hotchkiss</a>, <a href=\"https://profiles.wordpress.org/rosso99\">Sara Rosso</a>, <a href=\"https://profiles.wordpress.org/sarciszewski\">Scott Arciszewski</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/scottbrownconsulting\">scottbrownconsulting</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergejmueller\">Sergej M&#252;ller</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shamess\">Shane</a>, <a href=\"https://profiles.wordpress.org/shinichin\">Shinichi Nishikawa</a>, <a href=\"https://profiles.wordpress.org/sidati\">Sidati</a>, <a href=\"https://profiles.wordpress.org/siobhan\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/aargh-a-knot\">sky</a>, <a href=\"https://profiles.wordpress.org/slushman\">slushman</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/stephanethomas\">stephanethomas</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/stevegrunwell\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/charlestonsw\">Store Locator Plus</a>, <a href=\"https://profiles.wordpress.org/subharanjan\">Subharanjan</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/5um17\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/tacoverdo\">Taco Verdonschot</a>, <a href=\"https://profiles.wordpress.org/tahteche\">tahteche</a>, <a href=\"https://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/takayukister\">Takayuki Miyoshi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</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/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timplunkett\">timplunkett</a>, <a href=\"https://profiles.wordpress.org/tmuikku\">tmuikku</a>, <a href=\"https://profiles.wordpress.org/skithund\">Toni Viemer&#246;</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/liljimmi\">Tracy Levesque</a>, <a href=\"https://profiles.wordpress.org/rilwis\">Tran Ngoc Tuan Anh</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/vhomenko\">vhomenko</a>, <a href=\"https://profiles.wordpress.org/virgodesign\">virgodesign</a>, <a href=\"https://profiles.wordpress.org/vladolaru\">vlad.olaru</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/vtieu\">vtieu</a>, <a href=\"https://profiles.wordpress.org/webaware\">webaware</a>, <a href=\"https://profiles.wordpress.org/wesleye\">Wesley Elfring</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wisdmlabs\">WisdmLabs</a>, <a href=\"https://profiles.wordpress.org/wpdelighter\">WP Delighter</a>, <a href=\"https://profiles.wordpress.org/wp-architect\">wp-architect</a>, <a href=\"https://profiles.wordpress.org/xavortm\">xavortm</a>, <a href=\"https://profiles.wordpress.org/yetanotherdaniel\">yetAnotherDaniel</a>, and <a href=\"https://profiles.wordpress.org/zinigor\">zinigor</a>.\n<p>&nbsp;</p>\n<p>Special thanks go to <a href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a> for producing the release video and <a href=\"https://jacklenox.com\">Jack Lenox</a> for the voice-over.</p>\n<p>Finally, thanks to all of the contributors who provided translations for the release. WordPress 4.5 comes fully translated into 44 languages and the release video has been translated into 32 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.6!</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:\"\";}}}}}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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 4.5 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/04/wordpress-4-5-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:\"Sun, 10 Apr 2016 05:14:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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.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=4186\";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:350:\"The second release candidate for WordPress 4.5 is now available. We&#8217;ve made 91 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.5 on Tuesday, April 12, but we need your help [&#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:13:\"Mike Schroder\";s: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:3044:\"<p>The second release candidate for WordPress 4.5 is now available.</p>\n<p>We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log/trunk?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=37171&amp;stop_rev=37078&amp;limit=120&amp;verbose=on\">91 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.5 on <strong>Tuesday, April 12</strong>, but we need your help to get there.</p>\n<p>If you haven’t tested 4.5 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.5, 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.5-RC2.zip\">download the release candidate here</a> (zip).</p>\n<p>For more information about what’s new in version 4.5, check out the <a href=\"https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.5 and update your plugin&#8217;s <em>Tested up to</em> version in the readme to 4.5. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p><strong>Polyglots</strong>, strings are now hard frozen, including the About Page, so you are clear to translate!</p>\n<p>A few changes of note since the first release candidate:</p>\n<ul>\n<li>Normalized non-slashing of data in the REST API infrastructure. If you use the REST API infrastructure, <a href=\"https://make.wordpress.org/core/2016/04/06/rest-api-slashed-data-in-wordpress-4-4-and-4-5/\">check out the post on this change</a>.</li>\n<li>Customizer settings for widget instances get registered a bit later to give a chance for the widget instances themselves to be registered first. See <a href=\"https://core.trac.wordpress.org/ticket/36431\">#36431</a> for details.</li>\n<li>Fixed various cropping issues in the Custom Logo feature and Twenty Fifteen / Twenty Sixteen themes.</li>\n</ul>\n<p>Be sure to <a href=\"https://make.wordpress.org/core/\">follow along the core development blog</a>, where you can find the <a href=\"https://make.wordpress.org/core/2016/03/30/wordpress-4-5-field-guide/\">Field Guide for 4.5</a>.</p>\n<p><em>It&#8217;s great fun to test</em><br />\n<em>Enjoyment in another</em><br />\n<em>Release Candidate</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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Contributor Weekend: Global WordPress Translation Day\";s:7:\"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:88:\"https://wordpress.org/news/2016/04/contributor-weekend-global-wordpress-translation-day/\";s: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, 07 Apr 2016 21:04:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4191\";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:378:\"Global WordPress Translation Day is a one-day contributor initiative organised by the WordPress project’s Polyglots team that is dedicated to helping new contributors who would like to translate WordPress in one of the 160 languages WordPress is available in. Global WordPress Translation Day will be on Sunday, April 24th, starting at 0:00 UTC and will go on for [&#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:7:\"Josepha\";s: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:3069:\"<p class=\"p1\"><span class=\"s1\">Global WordPress Translation Day is a one-day contributor initiative organised </span><span class=\"s1\">by the WordPress project’s </span><span class=\"s1\"> <a href=\"https://make.wordpress.org/polyglots\"><span class=\"s2\">Polyglots team</span></a> that is dedicated to helping new contributors who would like to translate WordPress in one of the 160 languages WordPress is available in.</span></p>\n<p class=\"p1\"><span class=\"s1\">Global WordPress Translation Day will be on Sunday, April 24th, starting at 0:00 UTC and will go on for 24 hours covering all time zones.</span></p>\n<p class=\"p3\"><span class=\"s1\"><b>What are we doing?</b></span></p>\n<ul class=\"ul1\">\n<li class=\"li1\"><span class=\"s1\"><span class=\"s1\">Live training: A 24h live streaming of tutorials about translating WordPress in different languages and making your code translatable (30min/1h sessions in different languages including a general instruction and specifics for that particular language). The </span></span><span class=\"s1\">internationalization </span>sessions will be in English. The sessions will be presented by some of the most experienced WordPress translators and internationalization experts. The Schedule can be found on the website.</li>\n<li class=\"li1\"><span class=\"s1\">Local translation contributor days: Groups of contributors gather at different locations and work face to face.</span></li>\n<li class=\"li1\"><span class=\"s1\">Local remote translation contributor days: Current translation teams dedicate time and get involved remotely to do orientation for their potential contributors or work with their current translation teams on translating as many strings as they can.</span></li>\n</ul>\n<p class=\"p1\"><span class=\"s1\">If you organise a local meetup, why not organise a contributor day for translating in your language?</span></p>\n<p class=\"p3\"><span class=\"s1\"><b>Join us! Read about the initiative and </b><a href=\"https://make.wordpress.org/polyglots/2016/03/02/wordpress-global-translation-day-april-24th-2016/\"><span class=\"s3\"><b>sign up as an organiser</b></span></a><b>.</b></span></p>\n<p class=\"p3\"><span class=\"s1\"><b>Can I get involved if I only speak English?</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Yes! Even if you only speak English, it would be great to get involved and check out some of the English locale variants &#8211; English as spoken in the United Kingdom, Canada, New Zealand, Australia, South Africa. English has many variants across the globe and you can learn about the differences and why it&#8217;s important that users have the option to choose a variant during some of our sessions. And if you&#8217;re in a funky mood, you can give translating the interface into Emoji a try! Yes, we have a WordPress in Emoji locale!</span></p>\n<p class=\"p3\"><span class=\"s1\"><b>Questions?</b></span></p>\n<p class=\"p1\"><span class=\"s1\">The polyglots team and the event organisers hang out in <a href=\"http://wordpress.slack.com/messages/polyglots/\">#Polyglots in Slack</a>. They will gladly help you out.</span></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:\"\";}}}}}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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.5 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/03/wordpress-4-5-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Mar 2016 03:50: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: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.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=4165\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:344:\"The release candidate for WordPress 4.5 is now available. We&#8217;ve made 49 changes 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.5 on Tuesday, April 12, but we need your help [&#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:13:\"Mike Schroder\";s: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:2251:\"<p>The release candidate for WordPress 4.5 is now available.</p>\n<p>We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log/trunk?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=37077&amp;stop_rev=37026&amp;limit=120&amp;verbose=on\">49 changes</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.5 on <strong>Tuesday, April 12</strong>, but we need your help to get there.</p>\n<p>If you haven’t tested 4.5 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.5, 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.5-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>For more information about what’s new in version 4.5, check out the <a href=\"https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.5 and update your plugin&#8217;s <em>Tested up to</em> version in the readme to 4.5 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p>Be sure to <a href=\"https://make.wordpress.org/core/\">follow along the core development blog</a>, where we&#8217;ll continue to post <a href=\"https://make.wordpress.org/core/tag/dev-notes+4-5/\">notes for developers</a> for 4.5.</p>\n<p><em>Free as in Freedom</em><br />\n<em>It is WordPress 4.5</em><br />\n<em>Also free as in beer</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:\"\";}}}}}i:7;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.5 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/03/wordpress-4-5-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:\"Thu, 17 Mar 2016 04:30:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{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.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:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4155\";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.5 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.5, 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:13:\"Mike Schroder\";s: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:3392:\"<p>WordPress 4.5 Beta 4 is now available!</p>\n<p>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.5, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.5-beta4.zip\" target=\"_blank\">download the beta here</a> (zip).</p>\n<p>For more information on what&#8217;s new in 4.5, check out the <a href=\"https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-3/\">Beta 3</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-5+dev-notes/\">in-depth field guides on make/core</a>. This is the final <a href=\"https://make.wordpress.org/core/version-4-5-project-schedule/\">planned beta</a> of WordPress 4.5, with a release candidate scheduled for next week.</p>\n<p>Some of the changes in Beta 4 include:</p>\n<ul>\n<li>Add support for oEmbed <strong>moments and timelines from Twitter</strong> (<a href=\"https://core.trac.wordpress.org/ticket/36197\">#36197</a>).</li>\n<li>More changes to better support <strong>HHVM with Imagick</strong>.<strong> </strong>Please test with HHVM setups and resizing/rotating images (<a href=\"https://core.trac.wordpress.org/ticket/35973\">#35973</a>).</li>\n<li>Tightened up the <strong>Inline Link</strong> feature (<a href=\"https://core.trac.wordpress.org/ticket/33301\">#33301</a>, <a href=\"https://core.trac.wordpress.org/ticket/30468\">#30468</a>).</li>\n<li>Support <code>&lt;hr&gt;</code> <strong>editor shortcut</strong> with 3 or more dashes (<code>---</code>); no spaces. To give more time to study the best shortcuts for users, text patterns for bold and italic have been removed and won&#8217;t ship with for 4.5 (<a href=\"https://core.trac.wordpress.org/ticket/33300\">#33300</a>).</li>\n<li>Fixes for <strong>SSL with Responsive Images</strong>. Please test with SSL, especially on sites with mixed http/https setups (<a href=\"https://core.trac.wordpress.org/ticket/34945\">#34945</a>).</li>\n<li>Allow rewrite rules to work in nested <strong>WordPress installations on IIS</strong> (<a href=\"https://core.trac.wordpress.org/ticket/35558\">#35558</a>).</li>\n<li><strong>Various bug fixes</strong>. We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=37025&amp;stop_rev=36932&amp;limit=200&amp;verbose=on\">almost 100 changes</a> during the last week.</li>\n</ul>\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\" target=\"_blank\">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/\" target=\"_blank\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\" target=\"_blank\">a list of known bugs.</a></p>\n<p>Happy testing!</p>\n<p class=\"p1\"><em>Llegamos al fin</em><br />\n<em>del tiempo pa&#8217; beta</em><br />\n<em>¡Pruébalo Ahora!</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:\"\";}}}}}i:8;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.5 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/03/wordpress-4-5-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:\"Thu, 10 Mar 2016 06:59:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{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.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:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4128\";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.5 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.5, 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:13:\"Mike Schroder\";s: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:3631:\"<p>WordPress 4.5 Beta 3 is now available!</p>\n<p>This software is still in development<strong>,</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.5, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.5-beta3.zip\" target=\"_blank\">download the beta here</a> (zip).</p>\n<p>For more information on what&#8217;s new in 4.5, check out the <a href=\"https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-2/\">Beta 2</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-5+dev-notes/\">in-depth field guides on make/core</a>. Some of the fixes in Beta 3 include:</p>\n<ul>\n<li>Many <strong>Theme Logo Support</strong> (<a href=\"https://core.trac.wordpress.org/ticket/33755\">#33755</a>) fixes, including support for bundled Twenty Fifteen (<a href=\"https://core.trac.wordpress.org/ticket/35944\">#35944</a>).</li>\n<li>Add <strong>Responsive Preview</strong> to theme install previewer (<a href=\"https://core.trac.wordpress.org/ticket/36017\">#36017</a>).</li>\n<li>Support <strong>Imagick in HHVM</strong> (<a href=\"https://core.trac.wordpress.org/ticket/35973\">#35973</a>).</li>\n<li><strong>Whitelist IPTC, XMP, and EXIF profiles</strong> from <code>strip_meta()</code> to maintain authorship, copyright, license, and image orientation (<a href=\"https://core.trac.wordpress.org/ticket/28634\">#28634</a>).</li>\n<li>Support <strong>Windows shares/DFS roots</strong> in <code>wp_normalize_path()</code> (<a href=\"https://core.trac.wordpress.org/ticket/35996\">#35996</a>).</li>\n<li><span class=\"s1\">New installs default to <strong>generating secret keys and salts locally</strong> instead of relying on the <span class=\"s2\">WordPress.org</span> API. Please test installing WP in situations where it can’t connect to the internet <span class=\"s1\">(like on a 🛳, ✈️, or 🛰) </span></span><span class=\"s1\">(<a href=\"https://core.trac.wordpress.org/ticket/35290\">#35290</a>).</span></li>\n<li>OPTIONS requests to REST API should <strong>return Allow header</strong> (<a href=\"https://core.trac.wordpress.org/ticket/35975\">#35975</a>).</li>\n<li>Upgrade twemoji.js to version 2 (<a href=\"https://core.trac.wordpress.org/ticket/36059\">#36059</a>) and add extra IE11 compatibility (<a href=\"https://core.trac.wordpress.org/ticket/35977\">#35977</a>) for <strong>Emoji</strong>.</li>\n<li><strong>Various bug fixes</strong>. We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=36931&amp;stop_rev=36814&amp;limit=200&amp;verbose=on\">more than 100 changes</a> during the last week.</li>\n</ul>\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\" target=\"_blank\">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/\" target=\"_blank\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\" target=\"_blank\">a list of known bugs.</a></p>\n<p>Happy testing!</p>\n<p class=\"p1\"><em><span class=\"s1\">Beta one, two, three<br />\n</span><span class=\"s1\">so many bugs have been fixed<br />\n</span><span class=\"s2\">Closer now; four, five.</span></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:\"\";}}}}}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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.5 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/03/wordpress-4-5-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:\"Thu, 03 Mar 2016 04:55:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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.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=4116\";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.5 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.5, 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:13:\"Mike Schroder\";s: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:2370:\"<p>WordPress 4.5 Beta 2 is now available!</p>\n<p>This software is still in development<strong>,</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.5, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.5-beta2.zip\" target=\"_blank\">download the beta here</a> (zip).</p>\n<p>For more information on what&#8217;s new in 4.5, check out the <a href=\"https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/\">Beta 1 blog post</a>. Some of the fixes in Beta 2 include:</p>\n<ul>\n<li>Added <a href=\"https://core.trac.wordpress.org/ticket/33300\">Horizontal Rule (HR) editing shortcut</a> and <a href=\"https://core.trac.wordpress.org/ticket/28612\">dismissible &#8220;Paste as Text&#8221; notice</a> in <strong>TinyMCE</strong>.</li>\n<li><strong>Selective Refresh</strong> support is <a href=\"https://core.trac.wordpress.org/changeset/36797\">enabled for core themes titles and taglines</a>, which allows shift-click to focus on controls and PHP filters to apply in the preview.</li>\n<li>Resolved a fatal error on <strong>image upload</strong> when ImageMagick could not complete stripping meta during resize (<a href=\"https://core.trac.wordpress.org/ticket/33642\">#33642</a>).</li>\n<li><strong>Various bug fixes</strong>. We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=36813&amp;stop_rev=36701&amp;limit=200&amp;verbose=on\">just over 100 changes</a> in the last week.</li>\n</ul>\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\" target=\"_blank\">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/\" target=\"_blank\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\" target=\"_blank\">a list of known bugs.</a></p>\n<p>Happy testing!</p>\n<p><em>It&#8217;s peer pressure time</em><br />\n<em>Testing: all cool kids do it</em><br />\n<em>Help find ALL the bugs!</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: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:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 24 Jun 2016 10:49:06 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, 22 Jun 2016 16:40:08 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:\"20160624104343\";}','no'),(854,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1466808546','no'),(855,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1466765346','no'),(856,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1466808547','no'),(857,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress.tv Blog: Spotlight: WordCamp Miami 2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=464\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://blog.wordpress.tv/2016/06/22/spotlight-wordcamp-miami-2016/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2223:\"<p>WordCamp Miami helped kick off the 2016 WordCamp season with sunny skies and great presentations on how to take your WordPress site to the next level. You can see all the <a href=\"https://wordpress.tv/event/wordcamp-miami-2016/\">WordCamp Miami sessions here</a>, but below are a few that stood out for us.</p>\n<h2>\nRachel Carden: Tools and Techniques for Evaluating Accessibility</h2>\n<div id=\"v-o320Yj17-1\" class=\"video-player\">\n</div>\n<p>When your website is accessible, all users can access your content no matter their abilities. Visually-impaired users can visit your website using a screen reader. Those who can’t use the mouse can navigate your site using a keyboard or other input device. Some accessibility features might also improve your SEO. When your site is inaccessible, research shows you could be excluding up to 20 percent of your users. This talk for all skill levels will review tools and techniques you can use to test and improve your site’s accessibility.</p>\n<p><a href=\"http://www.slideshare.net/rachelcarden/tools-and-techniques-for-evaluating-accessibility\">Presentation Slides</a></p>\n<p>&nbsp;</p>\n<h2>Kids WordPress Panel Discussion</h2>\n<div id=\"v-CypUoG9y-1\" class=\"video-player\">\n</div>\n<p>Kids talking about WordPress and blogging at WordCamp Miami 2016.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/464/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/464/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=464&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://blog.wordpress.tv/2016/06/22/spotlight-wordcamp-miami-2016/\"><img alt=\"Rachel Carden: Tools and Techniques for Evaluating Accessibility\" src=\"http://videos.videopress.com/o320Yj17/toolsandtechniquesforevaluatingaccessibility_std.original.jpg\" width=\"160\" height=\"120\" /></a></div><div><a href=\"http://blog.wordpress.tv/2016/06/22/spotlight-wordcamp-miami-2016/\"><img alt=\"Kids WordPress Panel Discussion\" src=\"http://videos.videopress.com/CypUoG9y/kidspanel_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jun 2016 16:41:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WordPress.tv Blog: Developing for WordPress with Pippin Williamson and Danilo Ercoli\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=439\";s:7:\"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:102:\"http://blog.wordpress.tv/2016/06/15/developing-for-wordpress-with-pippin-williamson-and-danilo-ercoli/\";s: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:1891:\"<h2 class=\"video-title\">Pippin Williamson: Ask Me Anything About Plugins</h2>\n<p>Pippin is a prolific plugin developer and founder of several successful commercial WordPress plugin projects. This session is a Q&amp;A style format where the audience asked question related to plugin development, the WordPress.org plugins directory, selling plugins, building a development team, and anything else related to plugins.</p>\n<p></p>\n<p>More from <a href=\"http://wordpress.tv/event/wordcamp-san-diego-2016/\">WordCamp San Diego 2016</a></p>\n<p>&nbsp;</p>\n<h2 class=\"video-title\">Danilo Ercoli: Migliorare le performance di WordPress con il caching e l’esecuzione differita di codice</h2>\n<p>Questo talk è rivolto sia a chi ha appena iniziato a sviluppare con WordPress, sia agli sviluppatori più esperti che lo conoscono già da parecchio tempo, ed è un’introduzione ad alcuni argomenti come il caching e l’esecuzione differita di codice PHP, che sono utili per migliorare notevolmente le performance del tuo sito. Alcuni degli argomenti trattati sono il corretto utilizzo della cache e dei plugin di caching. Un’introduzione al WordPress Jobs System, e come eseguire codice differito senza dover quindi rallentare il rendering della pagina.</p>\n<p></p>\n<p><a href=\"https://wptv.files.wordpress.com/2016/04/danilo-ercoli-migliorare-performance-wp-caching-esecuzione-differita-codice-wctrn-2016.pdf\">Presentation Slides</a></p>\n<p>More from <a href=\"http://wordpress.tv/event/wordcamp-torino-2016/\">WordCamp Torino 2016</a></p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/439/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/439/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=439&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jun 2016 16:37: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Post Status: How WordPress news happens — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=25018\";s:7:\"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://poststatus.com/wordpress-news-happens-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1636:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. This episode of Post Status Draft is hosted by Sarah Gooding &#8212; another WordPress journalist &#8212; and Brian Krogsgard.</p>\n<p><span>In this episode, Sarah and Brian discuss how they do WordPress news, manage working remotely, and handle family life.</span></p>\n<!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"https://audio.simplecast.com/39891.mp3\">https://audio.simplecast.com/39891.mp3</a>\n<p><a href=\"http://audio.simplecast.com/39891.mp3\">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://wptavern.com/category/opinion\">WP Tavern opinion</a></li>\n</ul>\n<h3>Sponsor</h3>\n<p><span>This episode is sponsored by <a href=\"https://www.valet.io/\">Valet</a>. Valet helps keep your clients happy &amp; coming back. They offer expert services and keep the websites they manage functioning flawlessly. They offer preventative care that provides peace of mind around the clock. For more information, check out <a href=\"https://www.valet.io/\">their website</a> and thank you to Valet for being a Post Status partner. </span><b> </b></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jun 2016 13:35:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WordPress.tv Blog: How to create child themes and multi-lingual blogs – Featured on WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=414\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"http://blog.wordpress.tv/2016/06/08/how-to-create-child-themes-and-multi-lingual-blogs-featured-on-wordpress-tv/\";s: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:2153:\"<h2 class=\"video-title\">Corinne Welsh: My First Child Theme</h2>\n<p>Corrine Welsh explains how to get started with themes in WordPress, starting with a case study: why, why then, and why not sooner. From there she looks at the structure of a theme and walks through the steps of building a child theme. You may leave inspired to roll up your sleeves and get your hands dirty in theming after this great talk.</p>\n<div id=\"v-6oXMxwGi-1\" class=\"video-player\">\n</div>\n<p>From <a href=\"http://wordpress.tv/event/wordcamp-london-2016/\">WordCamp London 2016</a></p>\n<h2 class=\"video-title\">Maciej Pilarski: How To Make Your WordPress Website Multilingual</h2>\n<p>In this presentation Maciej Pilarski goes into detail on how  to easily and quickly create a traditional multilingual website or eCommerce store.  He also compares most popular multilingual plugins and also shows how this can be done without using any plugins, as well as discusses the benefits to your business of going global and how this can be done in minutes.</p>\n<div id=\"v-K21BXW6Y-1\" class=\"video-player\">\n</div>\n<p>From <a href=\"http://wordpress.tv/event/wordcamp-london-2016/\">WordCamp London 2016</a></p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/414/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/414/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=414&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://blog.wordpress.tv/2016/06/08/how-to-create-child-themes-and-multi-lingual-blogs-featured-on-wordpress-tv/\"><img alt=\"Corinne Welsh: My First Child Theme\" src=\"http://videos.videopress.com/6oXMxwGi/video-b0595a6e44_std.original.jpg\" width=\"160\" height=\"120\" /></a></div><div><a href=\"http://blog.wordpress.tv/2016/06/08/how-to-create-child-themes-and-multi-lingual-blogs-featured-on-wordpress-tv/\"><img alt=\"Maciej Pilarski: How to Make your WordPress Website Multilingual\" src=\"http://videos.videopress.com/K21BXW6Y/video-c5c8665f72_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jun 2016 01:46:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WP Mobile Apps: WordPress for Android: Version 5.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://apps.wordpress.com/?p=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:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://apps.wordpress.com/2016/06/01/wordpress-for-android-version-5-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3183:\"<p>Hello WordPress users! <a href=\"https://play.google.com/store/apps/details?id=org.wordpress.android\" target=\"_blank\">Version 5.4 of the WordPress for Android app</a> is now available in the Google Play Store.</p>\n<h1>Gravatar update</h1>\n<p>Did you just take a great selfie? You can update your Gravatar from the app on the <em>Me</em> screen. Tap your profile picture, and follow the prompts to take a new photo or pick an image from your device&#8217;s photo library.</p>\n<div id=\"v-a5lLmHSc-1\" class=\"video-player\">\n</div>\n<h1>Smart Lock for Passwords integration</h1>\n<p>Signing in with a WordPress.com account is easier than ever with Smart Lock for Passwords, the Google password manager. If you signed in to your account on your computer using Google&#8217;s Chrome browser, the username and password fields will be automatically pre-filled when you open the app &#8212; you can even manage several identities.</p>\n<p><img class=\"alignnone wp-image-3404 size-large\" src=\"https://apps.files.wordpress.com/2016/05/screenshot-2016-05-04_12-08-06-614.png?w=614&h=1024\" alt=\"screenshot-2016-05-04_12.08.06.614\" width=\"614\" height=\"1024\" /></p>\n<h1>Other Changes</h1>\n<p>Version 5.4 also comes with a few other fixes:</p>\n<ul>\n<li>Fixed comment previews with images in the Comment List screen.</li>\n<li>Fixed an issue with tag display in the Reader.</li>\n<li>Fixed a problem sometimes removed the <em>Themes</em> option after sign-in.</li>\n</ul>\n<p>You can track our development progress for the next release by visiting <a href=\"https://github.com/wordpress-mobile/WordPress-Android/milestones/5.5\">our 5.5 milestone on GitHub</a>.</p>\n<h1>Beta</h1>\n<p>Do you like keeping up with what’s new in the app? Do you enjoy testing new stuff before anyone else? Our testers have access to beta versions with updates shipped directly through Google Play. The beta versions may have new features, new fixes — and possibly new bugs! Testers make it possible for us to improve the overall app experience, and offer us invaluable development feedback.</p>\n<p>Want to become a tester? <a href=\"https://play.google.com/apps/testing/org.wordpress.android\">Opt-in</a>!</p>\n<h1>Thank you</h1>\n<p>Thanks to our GitHub contributors: <a href=\"https://github.com/aerych\">@aerych</a>, <a href=\"https://github.com/aforcier\">@aforcier</a>, <a href=\"https://github.com/daniloercoli\">@daniloercoli</a>, <a href=\"https://github.com/hypest\">@hypest</a>, <a href=\"https://github.com/kwonye\">@kwonye</a>, <a href=\"https://github.com/maxme\">@maxme</a>, <a href=\"https://github.com/mzorz\">@mzorz</a>, <a href=\"https://github.com/nbradbury\">@nbradbury</a>, <a href=\"https://github.com/oguzkocer\">@oguzkocer</a>, <a href=\"https://github.com/roundhill\">@roundhill</a>, and <a href=\"https://github.com/tonyr59h\">@tonyr59h</a>.</p><img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=apps.wordpress.com&blog=108068616&post=3403&subd=apps&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"https://apps.wordpress.com/2016/06/01/wordpress-for-android-version-5-4/\"><img alt=\"gravatar\" src=\"https://videos.files.wordpress.com/a5lLmHSc/gravatar_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jun 2016 11:53:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Maxime\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: WordCamp Incubator Program to Launch in Indonesia, Zimbabwe, and Colombia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=55034\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"http://wptavern.com/wordcamp-incubator-program-to-launch-in-indonesia-zimbabwe-and-columbia\";s: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:2932:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/02/flags.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/02/flags.jpg?resize=1020%2C500\" alt=\"flags\" class=\"aligncenter size-full wp-image-16697\" /></a></p>\n<p>After receiving <a href=\"http://wptavern.com/wordcamp-incubator-program-receives-182-applications-narrows-candidates-to-16-communities\" target=\"_blank\">182 applications from cities all over the world</a>, the WordPress Community Team has selected three locations for the WordCamp Incubator program:</p>\n<ul>\n<li>Denpasar, Indonesia</li>\n<li>Harare, Zimbabwe</li>\n<li>Medellín, Colombia</li>\n</ul>\n<p>Representatives from the thirteen other short-listed locations are encouraged to organize a local WordPress meetup and will have the help of Community Team mentors as needed.</p>\n<p>Thanks to the addition of a new volunteer deputy from the Community Team, the program will move forward with three locations, instead of having to scale back to two, as previously anticipated. Each event has been assigned a deputy who will meet bi-weekly with the local team to mentor the new WordCamp organizers.</p>\n<p>Andrea Middleton outlined in the <a href=\"https://make.wordpress.org/community/2016/05/25/wordcamp-incubator-locations-announcement/\" target=\"_blank\">announcement</a> how the team plans to proceed with getting these events off the ground.</p>\n<p>&#8220;Denpasar, Harare, and Medellín will work with their respective deputies to start a monthly WordPress meetup group or add their existing meetup group to the chapter account program,&#8221; Middleton said. &#8220;Once the local WordPress user group is meeting regularly, each team will work on finding a venue, setting a date, recruiting speakers, and spreading the word about the upcoming WordCamp.&#8221;</p>\n<p>In order to take the pressure off the new organizers, the Community team will assist them in scheduling and finding speakers. The events will be 100% funded by the global sponsorship grant so organizers can focus on community building without the pressure of fundraising. Middleton said they are aiming for no more than three non-local speakers at each event, which she anticipates will happen in the last quarter of 2016.</p>\n<p>The challenge with the Incubator program is to ensure these events are a launching point and not just a flash in the pan. Middleton and the community team deputies are working to establish these emerging communities so that they continue to grow organically after the events conclude.</p>\n<p>&#8220;The goal for these events is to organize an easily reproducible, one-day, one-track event with about 50-75 attendees,&#8221; Middleton said. &#8220;Hopefully by the end of the organizing/incubating experience, members of the local community will feel confident that they can organize an annual WordCamp independently in the years to come.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 May 2016 05:12:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Donncha: WordPress is thirteen!\";s:7:\"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:24:\"http://z9.io/?p=89499890\";s:7:\"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:\"http://z9.io/2016/05/27/wordpress-is-thirteen/\";s: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:1231:\"<p>You could have knocked me over with a feather today when I read <a href=\"https://ma.tt/2016/05/wordpress-is-a-teenager/\">Matt&#8217;s post</a> announcing that WordPress was celebrating a birthday!</p>\n<p>It didn&#8217;t seem so long ago that we were working on b2++, hacking the multiuser bits in and doing all sorts of crazy things with it.</p>\n<p>Now I&#8217;m &#8220;typing&#8221; this on a mobile phone by swiping my finger across a virtual keyboard. Back then the closest to this that I could imagine would be some sort of SMS integration!</p>\n<p>WordPress today is unrecognisable from what it was back then, especially if you use the slick Calypso interface.</p>\n<p>I&#8217;m looking forward to seeing what the next few years bring.</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"http://z9.io/2013/08/02/like-a-dog-and-his-ball/\" rel=\"bookmark\" title=\"Permanent Link: Like a dog and his ball\">Like a dog and his ball</a></li><li> <a href=\"http://z9.io/2009/01/28/wordpress-mu-27/\" rel=\"bookmark\" title=\"Permanent Link: WordPress MU 2.7\">WordPress MU 2.7</a></li><li> <a href=\"http://z9.io/2008/09/02/wordpress-mu-261/\" rel=\"bookmark\" title=\"Permanent Link: WordPress MU 2.6.1\">WordPress MU 2.6.1</a></li></ul></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2016 22:57:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Post Status: WordPress.org — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=24730\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://poststatus.com/wordpress-org-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3513:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle &#8212; the CTO of Human Made &#8212; and Brian Krogsgard.</p>\n<p><span>In this episode, Joe and Brian discuss the structure and function of the WordPress.org website, which is the hub of the WordPress project. From the actual software distribution, to discussions about the project, to support, and buying swag: it all happens from WordPress.org. We break down what’s what and what we think you should know.</span></p>\n<p><a href=\"https://audio.simplecast.com/38479.mp3\">https://audio.simplecast.com/38479.mp3</a><br />\n<a href=\"http://audio.simplecast.com/38479.mp3\">Direct Download</a></p>\n<h3>Notes</h3>\n<p>Who owns WordPress.org?<br />\nWho works on WordPress.org<br />\nHow WordPress.org distributes software updates</p>\n<h3>Different Sections of WordPress.org Navigation</h3>\n<ul>\n<li>Showcase</li>\n<li>WordPress theme directory &#8212; and reviews &#8212; and commercial themes</li>\n<li>WordPress plugin directory &#8212; and reviews</li>\n<li>Mobile &#8212; Redirects to .com</li>\n<li>Support Forums / Codex &#8220;documentation&#8221;</li>\n<li>Make WordPress (Get Involved)</li>\n<li>About (many sub pages and also project structure)</li>\n<li>Blog</li>\n<li>Hosting</li>\n<li>Download (button &#8212; in future to be <a href=\"https://make.wordpress.org/meta/2016/02/29/get-wordpress-improving-the-path-to-wordpress/\">Get WordPress</a>)</li>\n</ul>\n<h3>Other Sections</h3>\n<ul>\n<li><a href=\"https://core.trac.wordpress.org/\">core.trac.wordpress.org</a></li>\n<li><a href=\"https://developer.wordpress.org/\">developer.wordpress.org</a></li>\n<li><a href=\"https://mercantile.wordpress.org/\">mercantile.wordpress.org</a></li>\n<li><a href=\"http://jobs.wordpress.net/\">jobs.wordpress.net</a></li>\n<li><a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a></li>\n<li><a href=\"https://wordpress.org/ideas/\">Ideas</a></li>\n</ul>\n<h3>Other Linked Sites</h3>\n<ul>\n<li><a href=\"https://central.wordcamp.org/\">WordCamp</a></li>\n<li><a href=\"http://wordpress.tv/\">WordPress.tv</a></li>\n<li><a href=\"https://buddypress.org/\">BuddyPress</a></li>\n<li><a href=\"https://bbpress.org/\">bbPress</a></li>\n<li><a href=\"https://wordpress.com/\">WordPress.com</a></li>\n<li><a href=\"https://ma.tt/\">ma.tt</a></li>\n</ul>\n<h3>Active Projects for Improving</h3>\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/tag/helphub/\">Helphub</a></li>\n<li>Handbooks (theme), plugin published</li>\n<li>Plugin directory</li>\n</ul>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/\">Blog for WordPress.org projects</a></li>\n</ul>\n<h3>Sponsor</h3>\n<p><span>This episode is sponsored by Gravity Forms. <a href=\"http://www.gravityforms.com/\">Gravity Forms</a>  makes the best web forms on the planet. Over a million WordPress sites are already using Gravity Forms. Is yours? For more information, check out their <a href=\"http://www.gravityforms.com/\">website</a> and thank you to Gravity Forms for being a Post Status partner. </span><b> </b></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2016 19:18:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: Jetpack 4.0.3 Patches a Critical XSS Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=55036\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/jetpack-4-0-3-patches-a-critical-xss-vulnerability\";s: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:2266:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/jetpack-logo.gif\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/jetpack-logo.gif?resize=700%2C276\" alt=\"jetpack-logo\" class=\"aligncenter size-full wp-image-27470\" /></a></p>\n<p><a href=\"https://jetpack.com/2016/05/27/jetpack-4-0-3-critical-security-update/\" target=\"_blank\">Jetpack 4.0.3 is a security release</a> that contains an important fix for a critical vulnerability that has been present in the plugin since version 2.0, released in 2012. According to Jetpack team member Sam Hotchkiss, a stored XSS vulnerability was found in the way that some Jetpack shortcodes are processed, which allows an attacker to insert JavaScript into comments to hijack a visitor&#8217;s browser.</p>\n<p>This particular bug is similar to one <a href=\"https://blog.sucuri.net/2016/05/security-advisory-stored-xss-bbpress-2.html\" target=\"_blank\">recently found and patched in bbPress</a>.</p>\n<p>&#8220;Similar issues may exist in other plugins, and it’s a good reminder about the power of regular expressions to create issues when parsing data,&#8221; Hotchkiss said.</p>\n<p>The Jetpack team has been working with the WordPress security team to push out point releases for all vulnerable branches of the plugin&#8217;s codebase, which includes all versions following 2.0. They are using WordPress&#8217; core automatic update system, so all sites that have not explicitly opted out will receive the security update.</p>\n<p>&#8220;Fortunately, we have no evidence of this being used in the wild,&#8221; Hotchkiss said. &#8220;However, now that this update is public, it’s just a matter of time before someone attempts to exploit it.&#8221; The Jetpack team is advising users to update as soon as possible, as the update also fixes any potential exploits that may have already been put in place.</p>\n<p>The team credits Marc-Alexandre Montpas from <a href=\"https://sucuri.net/\" target=\"_blank\">Sucuri</a> for finding the bug and disclosing it responsibly. Users will be notified about the security release via email, but those who have Akismet and/or VaultPress installed have already been protected since the first reporting of the vulnerability.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2016 01:05:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"Post Status: Growing a lifestyle business without losing the lifestyle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=24644\";s:7:\"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://poststatus.com/growing-lifestyle-business/\";s: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:8760:\"<p><em><strong>Editor&#8217;s Note</strong>: This is a guest post by Nate Wright. Nate is a WordPress developer and solopreneur. He runs <a href=\"http://themeofthecrop.com\">Theme of The Crop</a>, a niche WordPress theme company geared toward restaurant websites. You can learn more about Nate on his <a href=\"https://poststatus.com/profiles/nate-wright/\">Post Status profile</a> and follow him on <a href=\"https://twitter.com/natewr\">Twitter</a>.</em></p>\n<hr />\n<p>Here&#8217;s a scenario you&#8217;re probably familiar with: a friend or family member, not terribly tech-savvy, approaches you with an idea. Why don&#8217;t you build Facebook for clowns? What about Uber for sandwiches?</p>\n<p>Their ideas are often a little better than these. Sometimes they&#8217;re worse. But in my case the conversation always gets to the same point in the end.</p>\n<p>You can build stuff on the internet. Why aren&#8217;t you shooting for the stars? Don&#8217;t you want to be rich like Zuckerberg?</p>\n<p>Right now some of you may be thinking: yes I do! This post isn&#8217;t for you.</p>\n<p>This is for those of you who cringe at the thought of your days filling up with hiring and training staff, conducting meetings, or filling out paperwork. Those of you who don&#8217;t want to live the big siloed life of a CEO. Who dove into the WordPress market because you wanted to build things yourself. For yourself.</p>\n<h3>The rockstars and the rest of us</h3>\n<p>It’s hard to find someone more widely admired among WordPress developers &#8212; and more deserving of that admiration &#8212; than <a href=\"https://pippinsplugins.com/about/\">Pippin Williamson</a>. So when he <a href=\"https://pippinsplugins.com/control-give-grow/\">described his evolution</a> from staunch go-it-aloner to team leader, many of us sat up and listened.</p>\n<p>The <a href=\"https://pippinsplugins.com/control-give-grow/#comments\">comments</a> in response to that post exhibit a common mix of anxiety, frustration and hope for us go-it-aloners, who have carved out small (and not so small) niches in the WordPress world.</p>\n<p>We’re overstretched and under resourced. We lack good marketing strategies. And we can see that growth will come from transforming our businesses into larger enterprises.</p>\n<p>But then we start thinking about what that means. The hiring. The firing. The training. The meetings. The paperwork. <i>The liability</i>.</p>\n<p>&#8216;I don’t want to be the next Zuckerberg,&#8217; you may think. Then, hopefully, you’ll laugh at the absurdity. But really, you may think, &#8216;I don’t even want to be the next <a href=\"http://carlhancock.com/\">Carl Hancock</a> or <a href=\"https://yoast.com/author/joost/\">Joost de Valk</a>.&#8217;</p>\n<p>Let me be honest with you. I’ll stop putting words in your mouth and put them in mine.</p>\n<p>I have a lifestyle business. No, I don’t sell lifestyle products. I have a business <em>tailored to my lifestyle</em>.</p>\n<p>I have a business that allows to me to take lunch when I want, finish the day when I want, go on holiday when I want, write the code that I want. That’s my job perk. That’s my killer bonus. No, that’s my Shangri-La.</p>\n<p>When people tell you to hire early or scale quickly, they’re right that giving up control can be liberating. But it can also be encumbering. It brings new responsibilities at the same time that it releases you from old ones.</p>\n<p>Whether or not growing your team is right for you will depend on your temperament, your appetite and the kind of lifestyle you want.</p>\n<h3>Being a little fish in a big pond</h3>\n<p>But let’s be honest. You took a chance on the WordPress market because you saw a window of opportunity. That window may be closing.</p>\n<p>In the last few years we’ve seen a lot of consolidation. The theme market exploded, <a href=\"http://inside.envato.com/envato-stories-muhammad-haris-themefusion-2/\">made millions for a few</a>, and then caused a gold rush which <a href=\"http://scottbolinger.com/wordpress-theme-business/\">saturated the market and pushed out small operators</a>.</p>\n<p>At the same time, two big traditional distribution channels dried up: the official <a href=\"https://wordpress.org/themes/\">WordPress.org theme repository</a>, which has a huge backlog of themes awaiting approval, and <a href=\"https://theme.wordpress.com/\">Automattic’s marketplace</a>, which is closed to new entrants.</p>\n<p>We’re also seeing more traditional investment in WordPress properties. The big one is the <a href=\"http://recode.net/2014/05/05/wordpress-parent-automattic-has-raised-160-million-now-valued-at-1-16-billion-post-money/\">$160 million raised by Automattic</a> and Automattic&#8217;s subsequent <a href=\"https://poststatus.com/automattic-acquired-woocommerce-woothemes/\">acquisition of WooThemes</a>. Many actors are moving more aggressively to leverage or retain their market position. Syed Balkhi is on a buying and building spree (<a href=\"http://enviragallery.com/about-us/\">1</a>, <a href=\"http://optinmonster.com/about/\">2</a>, <a href=\"https://wpforms.com/say-hello-to-wpforms/\">3</a>, <a href=\"http://wptavern.com/syed-balkhi-acquires-google-analytics-by-yoast-renames-to-monsterinsights\">4</a>). Ninja Forms did a <a href=\"https://ninjaforms.com/releasing-three/\">ground-up rebuild</a>. Pippin’s shedding non-essential products (<a href=\"https://pippinsplugins.com/easy-content-types-acquired/\">1</a>, <a href=\"https://pippinsplugins.com/nikhil-vimal-adopts-front-end-registration-and-login-forms-plugin/\">2</a>) and <a href=\"https://pippinsplugins.com/selfish/\">purging some third-party addons</a>.</p>\n<p>The ecosystem looks increasingly unfriendly to us go-it-aloners. Automattic was the first to go big. Given exclusive commercial access to the WordPress trademark, it carved out its own space and split WordPress down the middle. Now the other half &#8212; the WordPress for the rest of us &#8212; is going big too.</p>\n<p>The nice thing about being a small operator is that you only need a tiny sliver of the pie. But as the size of the market has grown, it’s become more difficult to attract attention. Showing up with a good product isn’t enough.</p>\n<h3>Going it alone, together</h3>\n<p>My lifestyle business is working well for me. Revenue keeps inching up. Slowly.</p>\n<p>But it might not make it in a different kind of WordPress space. I’ve been thinking a lot about that lately. And I bet you have too.</p>\n<p>Where’s the market going? What am I willing to trade to survive? Which headaches are <a href=\"http://www.codeinwp.com/blog/transparency-report-14/\">worth changing direction for</a> and which headaches aren’t?</p>\n<p>Here are some of the ideas I’ve been tossing around:</p>\n<h3>Contractors</h3>\n<p>Hiring out. I could scale up or down easily, depending on how well it goes. But it’s tough to manage quality when juggling vendors.</p>\n<p>And what would I contract? I’d like to shed my bumbling efforts in marketing and traffic generation. But that seems like precisely the kind of job full of jackals who don’t know what they’re doing.</p>\n<p>Ok, that’s harsh. I’ll just say: I worry it’d be a headache to manage it well.</p>\n<p>Theme development seems the most plausible, since there’s a large body of talented, hungry themers washing up from the stormy seas of ThemeForest. But it may be the least valuable since the market is being swallowed up by a few big themes.</p>\n<h3>Commissions</h3>\n<p>Affiliate marketing is already working for me. A little. I could go further and recruit theme or plugin developers to sell from my site on commission.</p>\n<p>Then I’m saddled with support for products I didn’t build. Can I maintain quality? Can I drive enough traffic to be an attractive outlet for them? Will I end up with all of the headaches I wanted to avoid?</p>\n<h3>Partnerships</h3>\n<p>Maybe I’ll trade in my king-of-the-hill cap and bring on partners. Not employees. Genuine partners with overlapping skill sets. Instead of being a go-it-aloner we can be two or three go-it-aloners going it alone together!</p>\n<p>Or maybe that’s just a terrible way to run a business.</p>\n<h3>Alliances</h3>\n<p>There are a lot of us out there. Independent themers looking to expand beyond ThemeForest or give up on the old freemium approach of the official repository. Plugin developers looking for a new home or seeking out themes that will integrate with their plugins.</p>\n<p>We could probably do something special if we made stronger alliances. Combined to build to stronger platforms for our products.</p>\n<p>But that sounds like a lot of project management. Isn’t that what we were hoping to avoid?</p>\n<p>I don’t know. I’m going to go write some code.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 May 2016 18:10:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Nate Wright\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WP Mobile Apps: WordPress for iOS: Version 6.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://apps.wordpress.com/?p=3416\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://apps.wordpress.com/2016/05/25/wordpress-for-ios-version-6-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3021:\"<p>Hi there, WordPress users! <a href=\"https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&ct=\">Version 6.2 of the WordPress for iOS app</a> is now available in the App Store.</p>\n<h1>What&#8217;s New:</h1>\n<p><strong>Sharing just got easier!</strong> Post content from apps to your WordPress.com site with a new Share extension. Also, share a post right from your editor’s preview screen.</p>\n\n<a href=\"https://apps.wordpress.com/img_2229_2/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/05/img_2229_2.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"IMG_2229_2\" /></a>\n<a href=\"https://apps.wordpress.com/img_2230/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/05/img_2230.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"IMG_2230\" /></a>\n\n<p><strong>Improved clipboard support: </strong>Working with images? You can now copy and paste single images in your editor.</p>\n<p><strong>Login with ease:</strong> We improved error messages for self-hosted users.</p>\n<p><strong>Enhancements:</strong> Because &#8220;good&#8221; is not enough! Here&#8217;s the full <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?q=is%3Aclosed+is%3Aissue+milestone%3A6.2+label%3A%22%5BType%5D+Enhancement%22\">list of enhancements</a>.</p>\n<p><strong>Bugs, be gone!</strong> We zapped bugs that prevented images from rendering properly and caused backspaces to misbehave.  You can see the full list of bug fixes <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?q=is%3Aclosed+is%3Aissue+milestone%3A6.1+label%3A%22%5BType%5D+Bug%22\">here</a>!</p>\n<h1>Thank You</h1>\n<p>Thanks to all of the contributors who worked on this release:<br />\n<a href=\"https://github.com/aerych\">@aerych</a>, <a href=\"https://github.com/akirk\">@akirk</a>, <a href=\"https://github.com/alexcurylo\">@alexcurylo</a>, <a href=\"https://github.com/astralbodies\">@astralbodies</a>, <a href=\"https://github.com/diegoreymendez\">@diegoreymendez</a>, <a href=\"https://github.com/frosty\">@frosty</a>, <a href=\"https://github.com/jleandroperez\">@jleandroperez</a>, <a href=\"https://github.com/koke\">@koke</a>, <a href=\"https://github.com/kurzee\">@kurzee</a>, <a href=\"https://github.com/kwonye\">@kwonye</a>, <a href=\"https://github.com/maxme\">@maxme</a>, <a href=\"https://github.com/nheagy\">@nheagy</a>, <a href=\"https://github.com/rachelmcr\">@rachelmcr</a>, <a href=\"https://github.com/sendhil\">@sendhil</a>, <a href=\"https://github.com/mattmiklic\">@mattmiklic</a> and <a href=\"https://github.com/SergioEstevao\">@SergioEstevao</a>.</p>\n<p>You can track the development progress for the next update by visiting <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?utf8=✓&q=is%3Aissue+milestone%3A6.3+\" target=\"_blank\">our 6.3 milestone on GitHub</a>. Until next time!</p><img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=apps.wordpress.com&blog=108068616&post=3416&subd=apps&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 May 2016 06:05:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"diegoreymendez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WPTavern: In Case You Missed It – Issue 9\";s:7:\"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:44:\"http://wptavern.com?p=55015&preview_id=55015\";s:7:\"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:\"http://wptavern.com/in-case-you-missed-it-issue-9\";s: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:8011:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png\" rel=\"attachment wp-att-50955\"><img class=\"size-full wp-image-50955\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?resize=676%2C292\" alt=\"In Case You Missed It Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/112901923@N07/16153818039\">Night Moves</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nc/2.0/\">(license)</a>\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n<h2>Chris Lema Launches Beyond Good</h2>\n<p>Chris Lema has launched a new site called <a href=\"http://beyondgood.com/\">Beyond Good </a>that provides insight, tips, and methodologies for leading employees to become better than good. If it&#8217;s anything like his other sites, it&#8217;s sure to be a hit in the WordPress community.</p>\n<h2>Remote Jobs, a Remote Worker Specific Jobs Board</h2>\n<p>Chris Wallace and the team at Lift have launched <a href=\"https://remotejobs.com/\">Remote Jobs</a>, a jobs board specifically catered to remote workers. According to Wallace, &#8220;The site exists to help others find remote jobs that connect them with their passions in life.&#8221; Check out the site as there&#8217;s already a decent listing of opportunities available for remote workers.</p>\n<h2>Why .Blog is Worth $19M</h2>\n<p>Matt Mullenweg participated in a <a href=\"http://venturebeat.com/2016/05/12/the-creator-of-wordpress-on-why-blog-was-worth-19-million/\">phone interview with VentureBeat</a>. The first question in the interview asks why the .blog domain is worth $19M.</p>\n<blockquote><p>Well, the domain business is actually a really good business because you can sell a domain and people use it and keep it forever. So, if you look at like a Verisign, or people who have TLDs, it’s actually an incredible business.</p>\n<p>We really wanted .blog to be open, and some of the other applications for .blog were closed, including Google — so, let’s say for example, only Blogger could have a .blog domain. And we thought that .blog should be open to everyone, even if they’re not using WordPress.</p>\n<p>I gotta be honest though, it was a stressful auction.</p></blockquote>\n<p>There are other tidbits of information included in the interview that I highly encourage you to read. If I were Google, I&#8217;d be upset as .blog is the perfect complimentary domain for Blogger.</p>\n<h2>Drupal Association Gives Community Member a Lifetime Ban</h2>\n<p>DrupalCon New Orleans took place last week and during the event, several speakers <a href=\"https://www.drupal.org/node/2729687\">experienced online harassment</a> in the form of derogatory racist, homophobic, and misogynistic comments and images from an anonymous Twitter account. Upon further investigation by community members and the Drupal Association technical and event staff, the harassment was tracked to an attendee at the event.</p>\n<blockquote><p>This person was then confronted by members of the Drupal Association staff and the Community Working Group. They were asked to leave the event and informed that they have been banned from attending any future DrupalCons as well as any events produced by the Drupal Association, in accordance with the <a href=\"https://events.drupal.org/neworleans2016/code-conduct\" rel=\"nofollow\">DrupalCon Code of Conduct</a>, which states, &#8216;We do not tolerate harassment of conference participants in any form.&#8217; Shortly after the person left the conference, the account from which the harassing tweets were made was deleted.</p></blockquote>\n<p>This is an excellent example of why Codes of Conduct exist for events. By the way, check out the <a href=\"https://plan.wordcamp.org/code-of-conduct/\">Code of Conduct</a> that&#8217;s in place for every WordCamp. If you experience harassment of any kind at a WordCamp, please tell event staff.</p>\n<h2>Plans Published to Upgrade WordPress Support Forums</h2>\n<p>Jennifer Dodd published a <a href=\"https://make.wordpress.org/meta/2016/05/19/wordpress-org-forums-upgrade/\">detailed plan</a> for migrating the WordPress.org support forums from bbPress 1.x to 2.x. The project is a huge undertaking and involves moving massive amounts of data. If all goes according to plan, the support forums will be on bbPress 2.x by the end of the year. I&#8217;m sure a lot of support forum volunteers are stoked to hear this news.</p>\n<h2>What NOT to Name a WordPress Theme</h2>\n<p>This tweet by Ryan Sullivan gave me a good laugh.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I\'d strongly consider rebranding. <a href=\"https://t.co/9MeevJTlPq\">pic.twitter.com/9MeevJTlPq</a></p>\n<p>&mdash; Ryan D. Sullivan (@ryandonsullivan) <a href=\"https://twitter.com/ryandonsullivan/status/733120690816065536\">May 19, 2016</a></p></blockquote>\n<p></p>\n<h2>Tom McFarlin on Improving the WordPress Plugin UX</h2>\n<p>Tom McFarlin published a <a href=\"https://tommcfarlin.com/wordpress-plugin-user-experience-2/\">great article</a> that offers ideas on how plugin developers can improve the WordPress plugin user experience. His first suggestion is a key reason I think GravityForms became successful.</p>\n<blockquote><p>Try to make sure that your project tightly integrates with the core WordPress user interface.</p></blockquote>\n<p>When I witnessed GravityForms for the first time in 2009, I loved how it integrated into the WordPress backend as if it were a part of the core software. Fast forward to 2016 and plugins that tie into a service are experimenting with overlay interfaces that replace WordPress&#8217;. The most recent example I recall is WP Forms <a href=\"http://wptavern.com/wpforms-aims-to-be-the-most-beginner-friendly-forms-plugin-for-wordpress\">that I reviewed</a> earlier this year.</p>\n<p>In my review, I specifically noted that the interface the developers used allowed me to focus on creating forms. It doesn&#8217;t seem like it&#8217;s a WordPress core feature and it didn&#8217;t have too. While the advice McFarlin gives is likely accurate for most cases, there are plugins that benefit from having a unique user interface different from WordPress&#8217;.</p>\n<h2>Don&#8217;t Edit Core</h2>\n<p>This comic <a href=\"http://www.commitstrip.com/en/2016/05/17/coder-dilemma-9-the-upgrade/\">created by CommitStrip</a> made me smile.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Coder Dilemma #9 &#8211; The Upgrade<br /> <a href=\"https://t.co/2Tu2l1tgYX\">https://t.co/2Tu2l1tgYX</a> <a href=\"https://t.co/xnMr2VdYWv\">pic.twitter.com/xnMr2VdYWv</a></p>\n<p>&mdash; CommitStrip (@CommitStrip) <a href=\"https://twitter.com/CommitStrip/status/732505464768843776\">May 17, 2016</a></p></blockquote>\n<p></p>\n<h2>Wapuu Tattoo!</h2>\n<p>In what is a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don&#8217;t know, Wapuu is the <a href=\"http://wapuu.jp/2015/12/12/wapuu-origins/\">unofficial mascot</a> of the WordPress project. WordCamp St. Louis 2016, took place last weekend and one of the attendees had a Wapuu tattoo! Wapuu looks good everywhere, including human skin!</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Wapuu has been sighted at <a href=\"https://twitter.com/hashtag/wcstl?src=hash\">#wcstl</a> <a href=\"https://twitter.com/hashtag/wordpress?src=hash\">#wordpress</a> <a href=\"https://twitter.com/hashtag/wapuu?src=hash\">#wapuu</a> <a href=\"https://t.co/4HYlp6GI0S\">pic.twitter.com/4HYlp6GI0S</a></p>\n<p>&mdash; Nile Flores (@blondishnet) <a href=\"https://twitter.com/blondishnet/status/731504592668758017\">May 14, 2016</a></p></blockquote>\n<p></p>\n<p>That&#8217;s it for issue nine. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 May 2016 22:30:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: WordPress Meta Team Publishes Prototypes of The Plugin Directory Redesign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=55006\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wptavern.com/wordpress-meta-team-publishes-prototypes-of-the-plugin-directory-redesign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3713:\"<p>In early 2015, the WordPress.org Meta team <a href=\"http://wptavern.com/wordpress-plugin-directory-launches-new-design\">redesigned</a> the <a href=\"https://wordpress.org/plugins/\">WordPress plugin directory</a> and added a number of new features. In an effort to iterate on the page&#8217;s layout, the Meta Team has <a href=\"https://make.wordpress.org/meta/2016/05/19/plugin-directory-prototypes/\">published prototypes</a> of a new design for the <a href=\"http://codepen.io/mapk/full/jqxqbo/\">plugin directory&#8217;s home</a> and <a href=\"http://codepen.io/mapk/full/KzGQKv/\">search results pages</a>.</p>\n<p>The prototypes are inspired by <a href=\"https://get.wp.com/\">Get WordPress</a>, a landing page that provides key information about the WordPress project at a glance.</p>\n<p>There are a few things to keep in mind while looking at these prototypes. The first is that plugin information displayed on the page is inaccurate. Second, the Pro and Light classifications are for design purposes only. Third, links at the bottom will point to their corresponding pages.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/PluginDirectoryMockup1.png\"><img class=\"size-full wp-image-55007\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/PluginDirectoryMockup1.png?resize=1025%2C2753\" alt=\"WordPress Plugin Directory Homepage Protoype\" /></a>WordPress Plugin Directory Homepage Protoype\n<p>Unlike the current design, the prototype displays far less information. Authors, Last Updated, Compatibility, and Active Installs are absent from the homepage view. Initial feedback <a href=\"https://make.wordpress.org/meta/2016/05/19/plugin-directory-prototypes/#comment-8151\">highlights the concern</a> that too much information has been stripped away.</p>\n<p>In response to a comment on the announcement post, Samuel Sidler, <span class=\"st\">Apollo Team Lead at Automattic and contributor to the Meta team</span>, <a href=\"https://make.wordpress.org/meta/2016/05/19/plugin-directory-prototypes/#comment-8154\">explains</a> why he doesn&#8217;t think the information is useful to users.</p>\n<blockquote><p>Author, as you said, is only really useful for insiders. The latter two, meanwhile, are already taken into account in the search results. If a plugin doesn’t have a recent compatible version, it will move down the list. If it’s too old, it won’t get shown at all (which is the case today).</p>\n<p>Active installs is more interesting, but we account for it weighting search results as-is. I actually find it refreshing to <em>not</em> show the active installs as it allows for less-popular plugins to get more downloads. Users will be less likely to click the popular plugins (outside of familiar names) and more likely to find the plugin they actually need.</p></blockquote>\n<p>Another commenter suggests <a href=\"https://profiles.wordpress.org/awakensolutions/\">creating a simple/advanced view. </a>By default, the page could display a simplistic design while giving power users an option for more details.</p>\n<p>&#8220;Just like <a href=\"https://wordpress.org/about/philosophy/\" rel=\"nofollow\">WordPress core</a>, we strive to design for the majority and build features for the 80%,&#8221; Sidler said in response to the comment. &#8220;An &#8216;advanced&#8217; view doesn’t meet that requirement, in my eyes.&#8221;</p>\n<p>The Meta team is iterating quickly and will soon publish a prototype of the plugin details page. If you have feedback on the plugin homepage and search result prototypes, please leave a comment on <a href=\"https://make.wordpress.org/meta/2016/05/19/plugin-directory-prototypes/\">the announcement post</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 May 2016 20:19:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: WPWeekly Episode 235 – Interview with James Giroux Envato’s WordPress Evangelist\";s:7:\"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:44:\"http://wptavern.com?p=55000&preview_id=55000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"http://wptavern.com/wpweekly-episode-235-interview-with-james-giroux-envatos-wordpress-evangelist\";s: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:1298:\"<p>In this episode, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <a href=\"https://jamesgiroux.ca/\">James Giroux</a>, Envato&#8217;s WordPress evangelist. We discuss a number of topics including what he&#8217;s accomplished since taking over the position in January, the item support policy change, and author driven pricing.</p>\n<p>We also find out what his favorite part of the job is and what he enjoys most about his role at Envato. Last but not least, we discover what the company is doing to shorten the length of time it takes to get through the review queue.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, June 1st 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #235:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 May 2016 19:18:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: BuddyPress Launches Style Modules Trial Initiative\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54954\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/buddypress-launches-style-modules-trial-initiative\";s: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:3960:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/customize-posts.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/customize-posts.jpg?resize=1024%2C583\" alt=\"photo credit: Paintbrush - (license)\" class=\"size-full wp-image-54351\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/93249705@N03/13067171403\">Paintbrush</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nd/2.0/\">(license)</a>\n<p>BuddyPress core developer <a href=\"https://twitter.com/hnla\" target=\"_blank\">Hugo Ashmore</a> announced a new trial initiative this week that aims to create a library of CSS and JavaScript snippets to help users customize their communities. The <a href=\"https://bpdevel.wordpress.com/2016/05/11/buddypress-style-modules/\" target=\"_blank\">Style Modules</a> project will aggregate community-submitted code that enhances BuddyPress components in a plug-and-play manner.</p>\n<p>Developers who want to contribute to the project can submit their modules by creating a ticket on <a href=\"https://buddypress.trac.wordpress.org/newticket\" target=\"_blank\">BP trac</a> and attaching a zip file that includes the CSS/JS files, a readme.md, and a screenshot.</p>\n<p>Users who want to add a module will need to create a /style-modules/ directory and then unzip the module inside it. The next step requires the user to copy functions from the module&#8217;s readme file to their theme&#8217;s functions.php file, a step which provides a significant hurdle for a non-technical BuddyPress community manager.</p>\n<p>&#8220;Initially this is a trial to see whether we get sufficient interest in the concept to continue and develop further, perhaps enhancing the loading process with enqueueing of files based on directory scanning and loading of files as an array but run from the core theme compat class, removing the need for users to copy the loading functions to their functions file,&#8221; Ashmore said.</p>\n<p>The project&#8217;s GitHub repository includes <a href=\"https://github.com/buddypress/style-modules/wiki/Style-Modules-Listings\">an example module</a> that re-styles the members list into a grid layout. Other example ideas Ashmore suggested include a new look for profile entries, a different presentation for the activity posting form, or something as simple as changing the font size for the activity stream.</p>\n<p>The experimental initiative will test the waters to see if the BuddyPress community will chip in to provide enough modules to make this a real library. The support policy stated in the proposal doesn&#8217;t offer much incentive for module authors to submit their work:</p>\n<blockquote><p>Provision of modules and use of them is entirely the discretion of the authors and users, while BP will run some basic checks on the module BP does not guarantee that the modules will work in all given situations or installs, or accept any liability in their use. Support for a module remains the responsibility of the author to ensure the continued effectiveness of the module with updates to themes, WP or BP.</p></blockquote>\n<p>Historically, BuddyPress has struggled to present itself as an easily customizable solution for communities. <a href=\"http://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/\" target=\"_blank\">Theme compatibility</a>, introduced in April 2013, made it easier to use BP with any theme, but unless you purchase a theme specifically designed for the plugin, its default output is rather generic and in need of heavy styling.</p>\n<p>The <a href=\"https://bpdevel.wordpress.com/2016/05/11/buddypress-style-modules/\" target=\"_blank\">BuddyPress Style Modules</a> concept is an attempt to make it easier for community managers to enhance BP components with different looks, but the project will need to provide a compelling reason for developers to contribute modules and continue to maintain them.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 May 2016 02:34:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: The .blog Domain Extension Is Now Open to Registrars\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54971\";s:7:\"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:\"http://wptavern.com/the-blog-domain-extension-is-now-open-to-registrars\";s: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:2083:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/blogging.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/blogging.jpg?resize=960%2C521\" alt=\"photo credit: Luis Llerena\" class=\"size-full wp-image-54799\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/3ZHG0XOIT6\">Luis Llerena</a>\n<p>Today marks a moment in internet history, as the very first .blog domain is now operational on WordPress.com. Knock Knock, WHOIS There, a subsidiary of Automattic, launched <a href=\"https://nic.blog/\" target=\"_blank\">Nic.blog</a> today to begin getting registrars to sign up to sell the new TLD.</p>\n<p>Automattic <a href=\"http://wptavern.com/automattic-to-oversee-the-sale-and-registration-of-top-level-blog-domains\" target=\"_blank\">won the rights to oversee the sale and registration of the .blog domain</a> in 2015 via a bidding process that is estimated to have closed around $20 million. The domain extension is so new that Twitter doesn&#8217;t yet support it as a valid link, but Automattic expects to activate 250,000 new names in 2016.</p>\n<p>According to the new nic.blog information site, registrars that sign up to sell .blog domains will be able to participate in an incentive partnership model that rewards a higher volume of sales:</p>\n<blockquote><p>Pricing will be in the standard range for new gTLDs, with premium names available in several tiers. High margins for registrars will be guaranteed by an incentive model, rewarding sales above a certain baseline. Final terms will be published in the coming weeks.</p></blockquote>\n<p>Automattic is opening up the .blog TLD to registrars around the world and companies can sign up on nic.blog to learn more about the requirements. Individuals who are interested in purchasing a .blog domain should review the tentative <a href=\"https://nic.blog/launch-plan/\" target=\"_blank\">launch plan</a> published today. Registration will be open to trademark owners during the Sunrise period starting in August 2016, followed by a Landrush period in October.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 May 2016 23:26:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: After Eight Years, Thematic Theme’s Lead Developers Discontinue the Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54967\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wptavern.com/after-eight-years-thematic-themes-lead-developers-discontinue-the-project\";s: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:3812:\"<p>Gene Robinson, lead developer of the Thematic WordPress theme, has <a href=\"http://thematictheme.com/2016/05/15/thematic-retrospective/\">announced</a> that the project will no longer be developed. Thematic <a href=\"https://wordpress.org/themes/thematic/\">was last updated</a> in 2013 and is actively installed on more than 4K sites. Users are advised to migrate to a different theme as updates will no longer be released. As WordPress core evolves, sites using Thematic may develop incompatibilities.</p>\n<h2>Continuing The Legacy with a Different Name</h2>\n<p>Although development on Thematic is discontinuing, Robinson has forked the project and renamed it to <a href=\"http://d.eciduo.us\">Deciduous. </a>The project picks up where Thematic leaves off. Those interested in continuing development can <a href=\"https://github.com/emhr/Deciduous\">follow it on GitHub</a> where pull requests are welcomed. Robinson is also seeking links to other projects that are derivative of Thematic.</p>\n<h2>Where to Get Support for Thematic</h2>\n<p>Users who need support are advised to post on the <a href=\"https://wordpress.org/support/theme/thematic\">WordPress.org support forums</a> for the Thematic theme, &#8220;The support forums on the Thematic website are shutting down due to the lack of community involvement, moderation, and developer feedback,&#8221; Robinson said. &#8220;Hopefully the greater WordPress support community will be able to help you find a resolution.&#8221;</p>\n<h2>A Look Back</h2>\n<p>The years 2008-2009 is an interesting time frame in WordPress&#8217; history. A number of commercial theme and plugin companies, WordPress-centric sites, and projects were launched. Among these was the <a href=\"https://web.archive.org/web/20080611165821/http://themeshaper.com/thematic-for-wordpress/\">Thematic theme</a> by Ian Stewart, theme Wrangler for Automattic. Thematic was more than just a theme, it was an opportunity for Stewart to learn how WordPress&#8217; theme system works.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/ThematicThemePreview.png\"><img class=\"size-full wp-image-54981\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/ThematicThemePreview.png?resize=951%2C740\" alt=\"Thematic Theme Preview from WordPress.org\" /></a>Preview of Thematic from WordPress.org\n<p>He regularly shared his knowledge with the community through <a href=\"https://themeshaper.com/\">ThemeShaper.com</a>, a site now owned by Automattic that features contributions from other members of the theme team. It was the wild west of theme development in 2008 and any person who regularly shared theme development techniques became an influential member of the community.</p>\n<p>Two years after launching Thematic, Stewart <a href=\"https://themeshaper.com/2010/03/04/ian-stewart-joined-automattic/\">joined Automattic</a> as a theme wrangler.</p>\n<blockquote><p>What can I say besides awesome, awesome, awesome? The enormous opportunity for learning and improvement; all the super-talented, friendly people; the chance to work on so many really, really cool projects—it’s almost unbelievable. This is a dream job for me.</p></blockquote>\n<p>The hiring allowed him to make available all of his commercial child themes built on the Thematic framework available free of charge to the community.</p>\n<h2>Did You Learn From Thematic?</h2>\n<p>It&#8217;s bittersweet and slightly nostalgic to see the theme come to an end. When I launched the Tavern in 2009, I regularly linked to tutorials and articles published by Stewart. I&#8217;m almost certain Thematic and its creator helped out a number of budding theme developers between 2008-2011. Let us know in the comments if you used Thematic for any projects or what you learned from its code.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 May 2016 20:45:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Post Status: WordPress as a Headless CMS — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=24518\";s:7:\"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://poststatus.com/wordpress-headless-cms-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2870:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle &#8212; the CTO of Human Made &#8212; and Brian Krogsgard.</p>\n<p><span>Joe and Brian discuss WordPress as a Headless CMS. They talk about what a Headless CMS is, WordPress’s strengths and weaknesses as a Headless CMS, popular frameworks to utilize, and offer up example websites to check out.</span></p>\n<p><a href=\"https://audio.simplecast.com/37861.mp3\">https://audio.simplecast.com/37861.mp3</a><br />\n<a href=\"http://audio.simplecast.com/37861.mp3\">Direct Download</a></p>\n<h3>Examples</h3>\n<ul>\n<li><a href=\"https://www.guggenheim.org/\">The Guggenheim</a></li>\n<li><a href=\"https://adayofrest.hm/boston-2016/\">A Day of Rest Boston</a></li>\n<li><a href=\"https://ustwo.com/\">ustwo</a></li>\n<li><a href=\"http://skaled.com/\">Skaled</a></li>\n<li><a href=\"http://tri.be/\">Modern Tribe</a></li>\n</ul>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://angularjs.org/\">Angular</a></li>\n<li><a href=\"https://facebook.github.io/react/\">React</a></li>\n<li><a href=\"http://blog.scalac.io/2016/02/16/react-vs-angular-2.html\">React vs Angular 2</a></li>\n<li><a href=\"https://getmoxied.net/lean/\">Lean, an Agular for WordPress framework</a></li>\n<li><a href=\"https://pantheon.io/decoupled-cms\">Decoupled CMS</a></li>\n<li><a href=\"https://css-tricks.com/what-is-a-headless-cms/\">What is a Headless CMS?</a></li>\n<li><a href=\"http://petya.in/we-need-to-talk-about-the-rest-api-the-non-developer-guide-to-the-future-of-wordpress/\">We Need to Talk about the REST API</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/05/16/rest-api-authentication-broker/\">Introducing the REST API Authentication Broker</a></li>\n<li><a href=\"https://hmn.md/2016/01/14/introducing-our-wordpress-rest-api-white-paper/\">Human Made&#8217;s REST API White Paper</a></li>\n</ul>\n<h3>Sponsor</h3>\n<p><span>Today’s show is sponsored by </span><a href=\"http://optinmonster.com\"><span>OptinMonster</span></a><span>. OptinMonster allows you to convert visitors into subscribers. You can easily create &amp; A/B test beautiful lead capture forms without a developer. They recently released </span><a href=\"http://optinmonster.com/introducing-optinmonster-3-0-taking-your-conversion-optimization-to-the-next-level/\"><span>OptinMonster 3.0</span></a><span>, with an all new builder interface and other great features.</span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 May 2016 17:47:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: Take Granular Control of WordPress’ Update System with Easy Updates Manager\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54952\";s:7:\"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:94:\"http://wptavern.com/take-granular-control-of-wordpress-update-system-with-easy-updates-manager\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3933:\"<p>When <a href=\"https://wordpress.org/news/2013/10/basie/\">WordPress 3.7 &#8220;Basie&#8221;</a> was released in 2013, it brought automatic updates to the masses. By default, WordPress automatically updates to point releases. Using <a href=\"https://codex.wordpress.org/Configuring_Automatic_Background_Updates\">additional constants</a> within wp-config.php, you can configure WordPress to automatically update themes, plugins, and major releases.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerFeaturedImage.png\"><img class=\"aligncenter size-full wp-image-54958\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerFeaturedImage.png?resize=650%2C207\" alt=\"Easy Update Manager Featured Image\" /></a></p>\n<p>If you want granular control over the WordPress update system without touching code, check out <a href=\"https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/\">Easy Updates Manager</a>. Easy Updates Manager is a free plugin that&#8217;s active on more than 70k sites. It&#8217;s maintained by <a href=\"https://profiles.wordpress.org/kidsguide/\">Matthew</a>, <a href=\"https://profiles.wordpress.org/ronalfy/\">Ronald Huereca</a>, <a href=\"https://profiles.wordpress.org/roary86/\">Roary Tubbs</a>, and <a href=\"https://profiles.wordpress.org/bigwing/\">BigWing Interactive</a>.</p>\n<h2>Countless Number of Configurations Available</h2>\n<p>Once activated, you&#8217;ll find the options page by browsing to Dashboard &gt; Update Options. There are two different interfaces for configuring updates. The first includes a number of toggle switches that disable/enable updates. The second is a traditional screen with radial buttons.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerDashboard.png\"><img class=\"size-full wp-image-54959\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerDashboard.png?resize=1025%2C432\" alt=\"Easy Update Manager Dashboard\" /></a>Easy Updates Manager Dashboard\n<p>Traditional settings page for Easy Updates Manager.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerGeneralSettings.png\"><img class=\"size-full wp-image-54960\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerGeneralSettings.png?resize=566%2C480\" alt=\"Easy Update Manager General Settings\" /></a>Easy Updates Manager General Settings\n<p>One of the highlights of Easy Updates Manager is the ability to enable automatic updates for individual themes and plugins. It&#8217;s a convenient way to update themes and plugins that rarely cause issues. There&#8217;s also a built-in logging feature that when enabled creates a new table in the database. It logs the username, update type, version, action, status, and date.</p>\n<p>Logging is listed as a beta feature and should be used at your own risk. It also may not work with all commercial themes and plugins. Here&#8217;s what the log looks like after I updated three plugins.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerLogs.png\"><img class=\"size-full wp-image-54961\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/EasyUpdateManagerLogs.png?resize=1025%2C350\" alt=\"Easy Update Management Log\" /></a>Easy Updates Management Log\n<p>Easy Updates Manager also includes the ability to exclude users from manipulating the plugin&#8217;s settings. The plugin contains additional features that I encourage you to explore by using it on a test site.</p>\n<p>Thanks to the number of options available, users have a countless number of update configurations to choose from. I tested the plugin on WordPress 4.6 alpha and it works as expected. You can <a href=\"https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/\">download it for free</a> from the WordPress plugin directory.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 May 2016 07:17:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: WordPress 4.6 Improves the Accessibility of the Tag and Category Management 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54910\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"http://wptavern.com/wordpress-4-6-improves-the-accessibility-of-the-tag-and-category-management-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2775:\"<p>Among the improvements coming in WordPress 4.6 are <a href=\"https://make.wordpress.org/core/2016/05/16/categories-and-tags-screens-changes/\">accessibility enhancements</a> to the Category and Tag management pages. The flow of each page has been changed so that the visual order of elements match the tab order. This allows those who navigate with keyboards to access the Add New Tag or Add New Category area first.</p>\n<p>Andrea Fercia, WordPress core committer and a member of the accessibility team, explains why the changes matter, &#8220;For accessibility, the visual order should always match the tab order. The main functionality in a page should just be the first thing in the source markup and other parts of the user interface should never be &#8216;skipped&#8217;.&#8221;</p>\n<p>The following image shows the tab order of elements on the Tag management screen in WordPress 4.5. In order to reach the Add New Tag section, you need to tab through a number of checkboxes, each tag in the tag cloud, and various quick edit links. This is a time-consuming and frustrating process.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/WordPress45TagManagementPage.png\"><img class=\"size-full wp-image-54944\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/WordPress45TagManagementPage.png?resize=1025%2C806\" alt=\"WordPress 4.5 Tag Management Element Order\" /></a>WordPress 4.5 Tag Management Element Order\n<p>In WordPress 4.6, the Add New Tag section is the first visual element as well as the first section accessed when pressing the tab key.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/WordPress46TagManagementScreen.png\"><img class=\"size-full wp-image-54945\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/WordPress46TagManagementScreen.png?resize=1025%2C792\" alt=\"WordPress 4.6 Tag Management Screen\" /></a>WordPress 4.6 Tag Management Screen\n<p>The new flow is more logical and provides consistency between the tag and category management screens, &#8220;From an accessibility point of view, the content structure and organization will be easier to understand and navigate,&#8221; Fercia said.</p>\n<p>WordPress theme and plugin authors who have added custom functionality to these screens are advised to double-check their code against the bleeding edge version of WordPress 4.6. There&#8217;s also an <a href=\"https://core.trac.wordpress.org/ticket/35664\">in-depth ticket</a> where developers and users can see how the team reached a consensus to implement the changes. If you have any questions or concerns please leave a comment on the <a href=\"https://make.wordpress.org/core/2016/05/16/categories-and-tags-screens-changes/\">announcement post</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 May 2016 19:30:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: New Plugin Uses BuddyPress Email API to Send bbPress Forum Emails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54863\";s:7:\"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:85:\"http://wptavern.com/new-plugin-uses-buddypress-email-api-to-send-bbpress-forum-emails\";s: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:3011:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-bbpress.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-bbpress.jpg?resize=1025%2C493\" alt=\"buddypress-bbpress\" class=\"aligncenter size-full wp-image-30982\" /></a></p>\n<p><a href=\"http://wptavern.com/buddypress-2-5-0-released-features-customizable-emails-and-support-for-emoji\" target=\"_blank\">BuddyPress 2.5</a>, released in March, introduced customizable emails via a new <a href=\"http://wptavern.com/buddypress-2-5-will-add-customizable-emails-via-a-new-bp-email-api\" target=\"_blank\">BP Email API</a>. This new feature allows community managers to easily edit BuddyPress-generated emails in the admin and make design changes in the customizer.</p>\n<p>It didn&#8217;t take long for developers to think of bringing this same customizability to bbPress emails. <a href=\"https://profiles.wordpress.org/thebrandonallen/\" target=\"_blank\">Brandon Allen</a> has just released <a href=\"https://wordpress.org/plugins/bp-emails-for-bbp/\" target=\"_blank\">BP Emails for BBP</a>, a plugin that sends forum and topic subscription emails using the new BP Email API.</p>\n<p>Once installed, administrators will find templates for new forum topics and topic replies under the same Emails menu item with the 16 customizable BuddyPress core emails.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/buddypress-bbpress-emails.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/buddypress-bbpress-emails.png?resize=1025%2C305\" alt=\"buddypress-bbpress-emails\" class=\"aligncenter size-full wp-image-54878\" /></a></p>\n<p>Allen noted that the plugin sends emails differently than bbPress, which puts every subscriber email in the BCC field and sends one email. Instead, it sends a separate email to each subscriber, which Allen said may improve deliverability given that some email providers look unfavorably on emails with large BCC fields.</p>\n<p>I tested the plugin and found that it works as advertised for customizing and sending bbPress emails. There are no settings to configure. It simply adds the same functionality that users now expect from BuddyPress core emails with all the same customization options.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/bbpress-subscription-email.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/bbpress-subscription-email.png?resize=1025%2C500\" alt=\"bbpress-subscription-email\" class=\"aligncenter size-full wp-image-54929\" /></a></p>\n<p><a href=\"https://wordpress.org/plugins/bp-emails-for-bbp/\" target=\"_blank\">BP Emails for BBP</a> is available on WordPress.org. It does not work with bbPress alone but requires both bbPress 2.5+ and BuddyPress 2.5+ to be active. With the help of this plugin, a community manager can brand all the email communications generated by the site so that the design and wording is consistent across both plugins.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 May 2016 05:32:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: BuddyPress 2.6 to Introduce New API for Navigation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54803\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/buddypress-2-6-to-introduce-new-api-for-navigation\";s: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:2401:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png?resize=839%2C398\" alt=\"buddypress-logo-blue\" class=\"aligncenter size-full wp-image-30655\" /></a></p>\n<p>In an exceptionally well-documented <a href=\"https://buddypress.trac.wordpress.org/changeset/10745/\" target=\"_blank\">commit message</a>, BuddyPress lead developer Boone Gorges introduced a new API to manage single item navigation, thanks to contributions from core developers Mathieu Viet and Raymond Hoh. Gorges summarized the changes to how BuddyPress will handle navigation in the upcoming 2.6 release:</p>\n<blockquote><p>The new BP_Core_Nav overhauls the way that BuddyPress registers, stores, and renders navigation items. Navigations are now component-specific, eliminating the potential for confusion and conflict between navigation items with similar names in different components, and opening the possibility of generating navs for separate objects of the same type on a single pageload.</p></blockquote>\n<p>The previous navigation system used bp_nav and bp_options_nav, global properties that managed nav and subnav across all of BuddyPress&#8217; components. Developers had a difficult time extending navigation and sometimes ended up stepping on each other&#8217;s toes when adding similar navigation items.</p>\n<p>&#8220;The new system eliminates most of these problems, by removing direct access to the underlying navigation data, while providing a full-fledged API for accessing and modifying that data,&#8221; Gorges said.</p>\n<p>Although the new API ensures backward compatibility with the legacy bp_nav and bp_options_nav, plugin developers whose extensions depend on these methods will want to update their code. With the exception of certain configurations running PHP 5.2.x, most plugins should work the same as before.</p>\n<p>However, Gorges&#8217; <a href=\"https://buddypress.trac.wordpress.org/changeset/10745/\" target=\"_blank\">commit message</a> details a handful of small ways that the new API may break backward compatibility in a few rare instances. BuddyPress plugin developers will want to review these ahead of the upcoming 2.6 release. Beta 1 is just one week away from release on May 25 and the official release is targeted for June 15.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 May 2016 05:06:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: Wes Bos Launches Free React.js + Redux Online Course\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54903\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/wes-bos-launches-free-react-js-redux-online-course\";s: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:3193:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/react-redux-course.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/react-redux-course.png?resize=1025%2C465\" alt=\"react-redux-course\" class=\"aligncenter size-full wp-image-54916\" /></a></p>\n<p><a href=\"http://wesbos.com/\" target=\"_blank\">Wes Bos</a>, a developer and educator known for his high quality video tutorials, has just launched a free online course for building JavaScript apps with <a href=\"https://facebook.github.io/react/\" target=\"_blank\">React.js</a> and <a href=\"http://redux.js.org/\" target=\"_blank\">Redux</a>. The 2.5 hour <a href=\"https://learnredux.com/\" target=\"_blank\">Learn Redux</a> course includes 20 videos that guide developers through building an example &#8216;Reduxstagram&#8217; app to present the core ideas behind Redux.</p>\n<p>To get the most out of Learn Redux, students should have a decent foundation of React and ES6. Bos recommends those who are not comfortable with React to start with his <a href=\"https://reactforbeginners.com/\" target=\"_blank\">React for Beginners</a> course.</p>\n<p>After you sign up, you&#8217;ll receive an email with a link to the starter files and access to the videos. The example app uses Webpack to bundle ES6 modules into a single JavaScript file, so the course begins with a video on using NPM and Webpack to set up a local development environment. Learn Redux includes:</p>\n<ul>\n<li>Access to all 20 videos</li>\n<li>All starter files</li>\n<li>Webpack Build Templates</li>\n<li>Stepped and finished solutions</li>\n</ul>\n<p>Bos spent more than 100 hours producing this series in partnership with <a href=\"https://getsentry.com/welcome/\" target=\"_blank\">Sentry</a> as a sponsor. Anyone who signs up receives a $50 Sentry credit.</p>\n<p>After Calypso was announced, Bos, who describes himself as &#8220;a huge WordPress fan,&#8221; wrote a <a href=\"http://wesbos.com/wordpress-calypso-react/\" target=\"_blank\">post</a> dispelling rumors that WordPress was ditching PHP and being rewritten in Node.js. He also urged WordPress developers to learn JavaScript.</p>\n<p>&#8220;This is thunder in the distance as to what is to come in WordPress,&#8221; Bos said. &#8220;Much of the theme writing I do is already in JavaScript – I often use WordPress as just an API to get data out of, and then use frameworks like Angular, React, Google Maps or jQuery to display that data. I’m not building an entire website in a JavaScript framework, but much of the interactive view layer of these sites is moving into JavaScript frameworks.&#8221;</p>\n<p>If you want to be ready to dive into the next generation of WordPress site and application development with knowledge of one of the most popular JS frameworks, the free <a href=\"https://learnredux.com/\" target=\"_blank\">Learn Redux</a> course offers all the tools necessary for getting started with React.js, Redux, and React Router.</p>\n<p>&#8220;Our trusty PHP template files aren’t going anywhere anytime soon, but I’ll bet you dollars to donuts you’ll be writing a lot more JavaScript in your WordPress sites in the years to come,&#8221; Bos said.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2016 21:50:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"WPTavern: Daniel Bachhuber Discusses WP-CLI, the WP REST API, and the Challenges of Contributing to Open Source on Roots Radio Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54738\";s:7:\"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:142:\"http://wptavern.com/daniel-bachhuber-discusses-wp-cli-the-wp-rest-api-and-the-challenges-of-contributing-to-open-source-on-roots-radio-podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7828:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/daniel-bachhuber.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/daniel-bachhuber.jpg?resize=300%2C300\" alt=\"daniel-bachhuber\" class=\"alignright size-medium wp-image-54898\" /></a><a href=\"https://danielbachhuber.com/\" target=\"_blank\">Daniel Bachhuber</a>, maintainer of the <a href=\"http://wp-cli.org/\" target=\"_blank\">WP-CLI</a> project and a contributing developer to the <a href=\"http://v2.wp-api.org/\" target=\"_blank\">WP REST API</a>, joined Chris Carr and Austin Pray on a recent episode of the <a href=\"https://roots.io/podcast/ep13/\" target=\"_blank\">Roots Radio podcast</a>. Bachhuber discussed his recent experience crowdfunding his work on &#8220;<a href=\"https://wp-cli.org/restful/\" target=\"_blank\">A More RESTful WP-CLI</a>&#8221; as well as the challenges he&#8217;s encountered as a contributor to various open source projects over the years.</p>\n<p>In the first part of the episode, Bachhuber shared how he spent the 283 hours of time that the WordPress community funded to advance the WP-CLI and WP REST API projects. The funding gave him the opportunity to dedicate time split between the two projects. Bachhuber put in approximately 95 hours towards the REST API in January and February but the bulk of the hours went towards making WP-CLI more friendly for developers who work with the REST API.</p>\n<p>&#8220;WordPress developers are going to be putting a lot of time now towards writing REST endpoints that expose their functionality to the world, and it would be really nice if WP-CLI interoperated nicely with that and allowed you to use that functionality at the command line without having to separately write your own WP-CLI commands,&#8221; Bachhuber said.</p>\n<p>He discussed the challenge of scoping out this broad goal and what he learned about crowdfunding during the process.</p>\n<p>&#8220;The RESTful WP-CLI kickstarter project was intentionally ambitious, because I&#8217;m a guy who has big ideas and likes to do big things,&#8221; Bachhuber said. &#8220;There are some things I feel really happy that I&#8217;ve been able to ship and produce so far, and there are other features that, for one reason or another, I haven&#8217;t quite been able to execute  yet and that&#8217;s a bit frustrating.</p>\n<p>&#8220;It&#8217;s a whole different ball game trying to manage the expectations of your Kickstarter backers than it is a single client. I&#8217;ve got 107 clients that I have to make happy,&#8221; he said.</p>\n<p>Nevertheless, Bachhuber said he was able to get the issue backlog for WP-CLI down to less than 60 issues and the dedicated time has allowed him to resolve old issues that have &#8220;languished since the dawn of time.&#8221;</p>\n<p>As part of the rewards offered for contributors to the crowdfunding campaign, Bachhuber offered his time consulting with individuals and organizations, which he found to be easier than traditional physical swag rewards.</p>\n<p>&#8220;I&#8217;m really glad that I chose [consulting] over having to give out physical swag, because it&#8217;s very difficult to procure and ship to everyone, particularly when you have international backers,&#8221; he said. &#8220;Even though I&#8217;ve spent a lot of my time fulfilling the rewards and talking with people and having calls with them and meeting up with them in person, it&#8217;s a much easier effort to manage than sending 100 coffee mugs across the world.&#8221;</p>\n<p>When asked if he&#8217;d do it again, Bachhuber said yes but emphasized that spending this much time on an open source project only works if you keep a healthy balance with other aspects of life.</p>\n<p>&#8220;I think it&#8217;s really important that if you&#8217;re contributing to open source projects on a regular basis or even maintaining them, that you balance your time between that and other things,&#8221; he said. &#8220;It&#8217;s really easy to get burned out on said open source project if you spend 100% of your time on it for a whole month or six months.</p>\n<p>&#8220;I was pretty intentional to say that the money I was raising was going to cover my involvement with the project for six months, a certain number of hours, and that it was going to be a part-time thing. That was a really healthy way to approach it. I think I would have gotten burned out if I had just tried to dive into it, crank it out, and move on to the next thing,&#8221; Bachhuber said.</p>\n<h3>The Emotional Challenges of Working on Open Source Projects</h3>\n<p>During the course of the interview Bachhuber was asked to share his feelings on what he referred to as &#8220;the kerfuffle with the REST API&#8221; that happened in February. The REST API team had written a merge proposal in September 2015 that recommended merging the API in two parts &#8211; the infrastructure in 4.4 and the posts, comments, terms, and users endpoints in 4.5 or 4.6. After partially executing on that proposal, the team held a status chat to discuss the plan moving forward.</p>\n<p>Bachhuber said that the discussion became &#8220;a very emotionally fraught event&#8221; after Matt Mullenweg said the project needed feature parity with the WordPress admin before any of the endpoints could be considered for merge. After putting hundreds of hours into the project alongside a handful of dedicated contributors who were already spread thin, he found this new requirement was a difficult pill to swallow.</p>\n<p>&#8220;For better or for worse, as a maintainer or even a participant of an open source project, you have to have a thick skin and realize that all the time the decisions that are made are not about you &#8211; they are about the project,&#8221; Bachhuber said. &#8220;Even if you are personally offended by the decision, it doesn&#8217;t matter because it isn&#8217;t about you. It&#8217;s really difficult to deal with emotionally.&#8221;</p>\n<p>Bachhuber&#8217;s years of contributing to and maintaing open source projects has taught him a few things about managing stress and conflict that <a href=\"https://2016.europe.wordcamp.org/session/my-condolences-youre-now-the-maintainer-of-a-popular-open-source-project/\" target=\"_blank\">he plans to share at WordCamp Europe</a> in a talk titled, &#8220;My condolences, You&#8217;re now the maintainer of a popular OS project.&#8221;</p>\n<p>&#8220;I find a lot of joy in maintaining open source projects,&#8221; Bachhuber said. &#8220;I also have to actively work to address the emotional side of the equation to make sure I&#8217;m in a healthy space to continue maintaining the project and the project is not affecting me personally. It&#8217;s taken me years to come to a point where I&#8217;m comfortable with that.&#8221;</p>\n<p>In the case of the WP REST API, Bachhuber has come to a place where he can compartmentalize his emotional reactions and responses to the differing opinions.</p>\n<p>&#8220;I&#8217;ve come to a point now where I care but I don&#8217;t care,&#8221; he said. &#8220;I care in the sense that I&#8217;d still love to see those endpoints go into core and see the fruits of our labors realized. I don&#8217;t care because I&#8217;m not emotionally attached to that happening on any particular time frame. I honestly would rather it happen when it&#8217;s ready to happen over prematurely, and I realize I might not be the best qualified person to make that decision.&#8221;</p>\n<p>In the remainder of the episode, Bachhuber and Carr discuss React, Redux, Karma, Enzyme, and other tools for testing and developing with the REST API. Check out the recording of the episode on <a href=\"https://roots.io/podcast/ep13/\" target=\"_blank\">Roots Radio</a> for more details about Bachhuber&#8217;s work on WP-CLI and his crowdfunding experience.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2016 06:03:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: The WordPress.org Recommended Hosting Page is Revamped, Features Flywheel for the First Time\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54822\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"http://wptavern.com/the-wordpress-org-recommended-hosting-page-is-revamped-features-flywheel-for-the-first-time\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8235:\"<p>DreamHost, Flywheel, and SiteGround have joined Bluehost on WordPress.org&#8217;s new <a href=\"https://wordpress.org/hosting/\">recommended hosting</a> page. In mid 2015, Matt Mullenweg, co-founder of the open source WordPress project, <a href=\"http://wptavern.com/the-recommended-hosting-page-on-wordpress-org-starts-over-from-scratch\">announced</a> the page would be revamped. To have a chance at being listed webhosting companies needed to fill out a 40-question survey.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/RecommendedHostsPage.png\"><img class=\"size-full wp-image-54844\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/RecommendedHostsPage.png?resize=790%2C642\" alt=\"2016 Recommended Hosts Page\" /></a>2016 Recommended Hosts Page\n<p>This is Flywheel&#8217;s first time on the page. <a href=\"https://getflywheel.com/\">Flywheel</a>, launched in 2013, is a managed WordPress hosting company with an emphasis towards designers and agencies. I asked Dusty Davidson, c<span class=\"team__role\">o-Founder and CEO of Flywheel</span>, what it means to be included on the page. &#8220;We&#8217;re obviously excited to be included, and think it really reflects on the work we&#8217;ve done to create a great experience for WordPress users,&#8221; he<span class=\"team__role\"> said. </span></p>\n<p>The recommended webhosting page on WordPress.org is incredibly lucrative. Based on conversations I&#8217;ve had with employees of hosts listed, it can generate millions of dollars in revenue. I asked Davidson what impact this will have on his company, &#8220;<span class=\"team__role\">I&#8217;m sure it will undoubtedly send a good deal of traffic, but honestly we&#8217;re just humbled and excited to be recognized,&#8221; he said. </span></p>\n<h2>A New Round of Controversy</h2>\n<p>Over the years, companies have come and gone from the recommended hosting page. However, Bluehost in particular has consistently appeared on the list, including the most recent iteration. Bluehost is owned by <a href=\"http://www.endurance.com/\">Endurance International Group</a> who <a href=\"http://www.prweb.com/releases/2014/05/prweb11874425.htm\">invested in Automattic</a> in 2014. Because Mullenweg is the CEO of Automattic and controls who is listed on the page, it&#8217;s easy to see why it regularly generates controversy.</p>\n<p>Kevin Ohashi of ReviewSignal.com, <a href=\"http://reviewsignal.com/blog/2016/05/12/wordpress-org-updates-hosting-recommendations-nobody-knows-selection-criteria/\">criticized the lack of transparency</a> regarding the process for how hosts.</p>\n<blockquote><p>Who is responsible for this revamp? What were the selection criteria? How often will it be updated? Will existing companies be continuously re-evaluated?</p></blockquote>\n<p>These are important questions to ask and there are no publicly documented answers. In a follow up post, <a href=\"http://reviewsignal.com/blog/2016/05/13/wordpress-org-hosting-recommendations-listing-criteria/\">Ohashi investigated</a> what criteria needs to be met for being listed on the page. The post contains a number of screenshots of his private conversation with <a href=\"https://profiles.wordpress.org/macmanx\">James Huff</a>, who has volunteered for the WordPress project for 12 years and has worked at Automattic for five years.</p>\n<p>Huff was directly related to the project and influenced who was chosen thanks to his involvement on the WordPress Support Team. Within the conversation, he shares details of the process and mentions that no money exchanged hands. Early in the conversation, Ohashi tells Huff that he wants to learn and publish how the process works. However, Huff had no idea that everything he said would be made public.</p>\n<p>&#8220;I was invited to what sounded like a friendly chat over direct message from a concerned community member, after he was referred to me by a friend,&#8221; Huff said. &#8220;At no point was it clarified or even implied that anything discussed would be made public.&#8221;</p>\n<p><del>Conversations held in a private matter should remain private unless given permission to publish them, something I discovered the hard way.</del> Unfortunately, the post comes across as a public interrogation of Huff. I asked Huff, who was shaken by the experience, how it has affected him moving forward as it relates to the WordPress project.</p>\n<p>&#8220;I&#8217;d be lying if I said my feelings weren&#8217;t at least shaken by the experience, especially considering how polite he was to my friend and how hostile he was towards me apparently just because I work for Automattic, but this isn&#8217;t the first time that has happened to me and I don&#8217;t expect it to be the last,&#8221; he said.</p>\n<p>&#8220;There&#8217;s an usually prevalent negative bias against Automatticians who contribute to WordPress.&#8221;</p>\n<h2>Mullenweg Provides Clarification</h2>\n<p>Mullenweg <a href=\"http://reviewsignal.com/blog/2016/05/13/wordpress-org-hosting-recommendations-listing-criteria/#comment-1011\">commented on the post</a> where he not only sticks up for Huff, but answers some of the controversial questions raised by Ohashi. Mullenweg explains how the applicants were chosen, how the criteria is weighted, who makes the final decisions, and how much money is involved. Here is his comment in full.</p>\n<blockquote><p>&#8216;I would like to see some transparency in the process&#8217;</p>\n<p>As stated on the page, the listing is completely arbitrary. The process was: There was a survey, four applicants were chosen, and the page was updated. That might repeat later in the year, or the process might change.</p>\n<p>&#8216;how criteria are weighted&#8217;</p>\n<p>There is no criteria or weighting. It ultimately is one person’s opinion. Information that is important is reflected in the questions asked in the survey, but that is not everything that is taken into account. (I have looked at this site in the past, for example.)</p>\n<p>&#8216;who is making the decisions&#8217;</p>\n<p>I am. James helped in sorting through the many submissions that came in, doing additional research, and digging on finalists, but ultimately the decision was mine. You can and should blame me fully for any issues you have with it. I appreciate James’ help in this go-round, but he will not be involved at all with any future updates. (So, please leave him alone.)</p>\n<p>&#8216;how much money is involved&#8217;</p>\n<p>There was no money involved. Obviously being listed on the page is hugely valuable and impacts the listed (or unlisted) businesses a great deal. This is why I take full responsibility for the listing, now and in the future — I have been fortunate to be extraordinarily successful and no financial or business consideration any of the applicants could offer matters to me. A host could offer $100,000,000 to be listed on the page for 1 day, and I would say no.</p></blockquote>\n<p>It&#8217;s unfortunate that the information in Mullenweg&#8217;s comment is not published in an official post announcing the changes to the recommended hosting page. If an official post was published that included the same information in his comment, it&#8217;s possible it would have eliminated most of the confusion, uncertainty, and doubt surrounding it.</p>\n<h2>Should WordPress.org Have a Recommended Hosting Page?</h2>\n<p>Due to the investments EIG has made in Automattic, Mullenweg&#8217;s role at the company, and him making the final decisions, there will always be a potential conflict of interest despite taking full responsibility of the page and the processes associated with it.</p>\n<p>Should WordPress.org have a recommended hosting page? What if the page was replaced with information people could use to make informed decisions on choosing a host? It would eliminate potential conflicts of interest and if there was a host Mullenweg felt strongly about, he could label it as a partner of the project. This would make it clear that any financial connection with the company is a business relationship.</p>\n<p>Are you hosting with any of the companies listed on the recommended hosting page? If so, tell us about your experience in the comments.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 14 May 2016 16:39:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: WordPress Accessibility Team Seeks Testers Using Speech Recognition Technology\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54829\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://wptavern.com/wordpress-accessibility-team-seeks-testers-using-speech-recognition-technology\";s: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:2791:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/glasses.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/glasses.jpg?resize=1024%2C562\" alt=\"photo credit: Let\'s Read - (license)\" class=\"size-full wp-image-54851\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/42788859@N00/320216939\">Let&#8217;s Read</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nc-sa/2.0/\">(license)</a>\n<p>The World Health Organization estimates that <a href=\"http://www.who.int/mediacentre/factsheets/fs282/en/\" target=\"_blank\">285 million people</a> worldwide are living with some form of visual impairment and 39 million of those are estimated to be blind. Many people with low vision depend on speech recognition technology to navigate the web and communicate their thoughts. This type of software also assists people who have carpal tunnel, RSI (Repetitive Stress Injuries) and/or limited mobility in their hands and arms.</p>\n<p>Rian Rietveld and the Accessibility team are working to improve the experience of using WordPress with speech recognition software, such as <a href=\"http://www.nuance.com/dragon/index.htm\" target=\"_blank\">Dragon Naturally Speaking</a> (widely considered as one of the best for desktop use.) In particular, <a href=\"https://core.trac.wordpress.org/ticket/23562\" target=\"_blank\">the task of adding media to a post has a number of obstacles</a> that make it nearly impossible for those using speech recognition software.</p>\n<p>Rietveld <a href=\"https://make.wordpress.org/accessibility/2016/05/13/20th-wordpress-accessibility-test-add-media-with-speech-recognition-software/\" target=\"_blank\">posted three tests</a> to the Accessibility team&#8217;s blog today, inviting those who use <a href=\"http://www.nuance.com/dragon/index.htm\" target=\"_blank\">Dragon Naturally Speaking</a> or other assistive technology to help the contributors determine the roadblocks that need to be removed for adding media. These tests include actions like adding media, editing attachment details, and creating a gallery.</p>\n<p>If you use WordPress with assistive technology for speech recognition, completing these tests and offering your feedback is one way to get involved as a contributor. You don&#8217;t necessarily have to use Dragon Naturally Speaking, as there are many newer alternatives such as Windows Speech Recognition (Cortana) and Chrome&#8217;s speech recognition powered by Google Speech to Text. Testers can report their experiences, along with the assistive technology/browser/OS, in the comments on Rietveld&#8217;s <a href=\"https://make.wordpress.org/accessibility/2016/05/13/20th-wordpress-accessibility-test-add-media-with-speech-recognition-software/\" target=\"_blank\">post</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2016 22:40: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Happytables Pivots to Provide Restaurant Analytics and Insights\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=41046\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wptavern.com/happytables-pivots-to-provide-restaurant-analytics-and-insights\";s: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:5302:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/happy-tables.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/happy-tables.jpg?resize=1000%2C608\" alt=\"happy-tables\" class=\"aligncenter size-full wp-image-54835\" /></a></p>\n<p><a href=\"http://www.happytables.com/\" target=\"_blank\">Happytables</a> is changing from being a platform that hosts restaurant websites to one that provides analytics and insights by tapping into apps that restaurants are already using to promote their businesses. The company uses WordPress as a command center for the application that communicates with various restaurant-tech APIs to deliver information to the dashboard in realtime.</p>\n<p>&#8220;We started with the website builder a while back,&#8221; Founder and CEO Noel Tock said. &#8220;It’s been a great ride, but we realized two things: 1) Website builders have become a race to the bottom with regards to revenue as well as extremely competitive, and 2) From our many conversations with restaurants, their challenges have become much larger; consolidating data and insights from all the products they now use.&#8221;</p>\n<p>One of the Happytables beta restaurants in London uses 14 different applications to manage its sales, operations, and marketing, and Tock says this trend is only growing.</p>\n<p>&#8220;The centre of gravity is shifting from the Point of Sale to a very fragmented collection of siloed products (reservations, online ordering, staff scheduling/wages, loyalty, waitlist, social, etc.),&#8221; Tock said. &#8220;Becoming that 30,000 foot view whilst generating actionable insights across the portfolio of applications is the challenge we’ve taken on with the new Happytables.&#8221;</p>\n<p>The first installation of the new Happytables was set up for <a href=\"http://whyteandbrown.com/\" target=\"_blank\">Whyte &amp; Brown</a> in London where the team is focusing their beta testing. The application currently aggregates data from POS (Point of Sale) and Social, but Tock says this will rapidly evolve to providing various insights from POS and Labor, such as revenue forecasting, employee performance, and breakfast/lunch/dinner performance.</p>\n<p>&#8220;It’s been very exciting working towards actionable insights, whereby we can tell a waiter that he/she was underselling a certain product or category compared to their colleagues, or that a particular employee performs a lot better on lunch then on dinner,&#8221; Tock said.</p>\n<p>Below you can see an example of Happytables&#8217; latest kitchen dashboard, using the team view as opposed to the individual employee recommendations/suggestions view.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/Happytables_kitchen_dashboard.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/Happytables_kitchen_dashboard.png?resize=1025%2C731\" alt=\"Happytables_kitchen_dashboard\" class=\"aligncenter size-full wp-image-54833\" /></a></p>\n<p>The new Happytables uses WordPress as a backend and the WP REST API and ReactJS on the frontend.  Although the development team still uses WordPress as one of its core technologies, the infrastructure is a bit more complicated.</p>\n<p>&#8220;It’s not pure WordPress for the data storage,&#8221; CTO Aaron Jorbin said. &#8220;In fact, very little of it is actually stored inside WordPress. It is used to store some information about the restaurant and manage requests to third parties where we fetch the data and then store it in DynamoDB.&#8221;</p>\n<p>The screenshots in this post show the WordPress theme in full screen mode, but Jorbin said the restaurant staff never interact with wp-admin. Restaurant operators use the app to view all the realtime information coming in so that they can make better decisions about how they run their businesses.</p>\n<p>Happytables is still hosting its customers from its first iteration as a website builder, but Tock said most are not good candidates for the beta.</p>\n<p>&#8220;The infrastructure is quite different now as we’re capturing different types of data (previously web content, now largely transactional data),&#8221; he said. &#8220;Our customers on the website builder platform came from all walks of life, so there’s not many who fit the ideal beta candidate (using Micros/Aloha as POS, based in London, run a multiunit restaurant, etc.).</p>\n<p>&#8220;We&#8217;re just looking to see how we can fit this into the larger Happytables model downstream,&#8221; Tock said. &#8220;If we’re going to implement so many API’s, there’s also value in tying those back to the website.&#8221;</p>\n<p>Not many aspects of the new infrastructure have been open sourced yet, as the team has been moving fast. Tock said they hope to make some of their code public further down the road after it&#8217;s been tested.</p>\n<p>&#8220;Once we’re past testing/beta, I’m sure a number of features will become more mature tools and move into their own public repo if they are of that sort of benefit,&#8221; he said. The new infrastructure is one of the many exciting ways that the WP REST API is being used to bring a host of information into WordPress from various third party applications and tie it all together in a useful way.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2016 19:45:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: Mom on Tinder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=46572\";s:7:\"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:36:\"https://ma.tt/2016/05/mom-on-tinder/\";s: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:227:\"<p>If you&#8217;re looking for a fun Friday read, <a href=\"http://www.gq.com/story/my-mom-ran-my-tinder\">check out this story of a young GQ writer who gave control of his Tinder account to his Mom</a>. It&#8217;s adorkable.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2016 16:35:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: GitLab Courts Disgruntled GitHub Customers with Response to Recent Pricing Hike\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54780\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://wptavern.com/gitlab-courts-disgruntled-github-customers-with-response-to-recent-pricing-hike\";s: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:5016:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/gitlab.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/gitlab.png?resize=1025%2C371\" alt=\"gitlab\" class=\"aligncenter size-full wp-image-50741\" /></a></p>\n<p>Yesterday GitHub <a href=\"http://wptavern.com/github-introduces-unlimited-private-repositories-hikes-prices-for-organizations\" target=\"_blank\">announced</a> pricing changes that give all paid plans unlimited repositories and change plans to a pricing-per-user model. Individual developers are the most likely customers to benefit from the changes, but many organizations will see an exponential increase in pricing.</p>\n<p>GitLab, a competitor in the Git repository hosting space, immediately addressed disgruntled GitHub customers with a <a href=\"https://about.gitlab.com/2016/05/11/git-repository-pricing/\" target=\"_blank\">pricing comparison</a> on the company&#8217;s blog. Co-founder and CEO <a href=\"https://twitter.com/sytses\" target=\"_blank\">Sid Sijbrandij</a> noted that the three main players in this space, GitHub, Bitbucket, and GitLab, all offer unlimited private repositories but that it doesn&#8217;t cost companies more to host additional repositories for a given user.</p>\n<p>Sijbrandij attributes the change to the increase in the <a href=\"https://www.sequoiacap.com/article/build-us-microservices/\" target=\"_blank\">microservices model</a>, a development approach that breaks software down into smaller, related pieces that communicate with one another via APIs.</p>\n<p>&#8220;As more and more developers, teams, and organizations seek out the advantages of microservices, they’ll need more repositories to support this new code structure,&#8221; Sijbrandij said. &#8220;Basically, the more microservices you have the more repositories you’ll need. That is why it is not surprising that GitHub has announced free private repositories.&#8221;</p>\n<p>Sijbrandij referenced several examples where GitHub&#8217;s pricing changes hit open source organizations hard, including <a href=\"https://github.com/edx/\" target=\"_blank\">Open edX</a>, a non-profit with a large number of contributors, which <a href=\"https://news.ycombinator.com/item?id=11674530\" target=\"_blank\">posted</a> the following on Hacker News:</p>\n<blockquote><p>I work for a non-profit open source organization that <a href=\"https://github.com/edx/\" target=\"_blank\">collaborates on github</a>. We have lots of people who aren&#8217;t employees, but have signed a contributor agreement with our organization and contribute changes to our software. Our bill will go up from $200/month to over $2000/month with this new pricing. We can afford it (it&#8217;s still a small fraction of our AWS bill) but it will force us to look at other alternatives. Github&#8217;s code review tools are already pretty mediocre compared to other tools like gerrit, and we&#8217;ve long since moved off of GitHub issue tracking due to lack of features compared to JIRA.</p></blockquote>\n<p>Sijbrandij emphasized that the team at GitLab believes “everyone can contribute,” a mission which drives GitLab.com&#8217;s pricing structure to offer unlimited private repositories, unlimited contributors, and unlimited CI runners for free. The on-premises solution, which includes enterprise features and support, is what keeps the lights on at the company. GitLab.com, the free, hosted version, runs the same enterprise edition software but is, by Sijbrandij&#8217;s own admission, still <a href=\"https://gitlab.com/gitlab-com/operations/issues/42\" target=\"_blank\">struggling with sluggish performance</a>.</p>\n<p>Earlier this year when open source project maintainers <a href=\"http://wptavern.com/open-source-project-maintainers-confront-github-with-open-letter-on-issue-management\" target=\"_blank\">confronted GitHub with an open letter on issue management</a>, GitLab differentiated itself by <a href=\"http://wptavern.com/gitlab-courts-open-source-project-maintainers-with-response-to-dear-github-letter\" target=\"_blank\">responding</a> to the situation with a new initiative focused on “making GitLab the best place for big open source projects.”</p>\n<p>Nearly a month later, <a href=\"http://wptavern.com/github-responds-to-letter-from-open-source-project-maintainers\" target=\"_blank\">GitHub finally responded</a> with an apology to open source project maintainers and a promise to address their concerns with a steady string of changes.</p>\n<p>GitHub has not given any indication of reversing its recent decision to change its pricing structure. However, with competitors like GitLab putting on the heat, GitHub may be forced to make some changes to its paid plans. At the very least, it could inspire the company to address concerns about organizations having to pay for inactive users and perhaps spur GitHub to offer customers the ability to distinguish between collaborators on open source projects and users who simply need access to private repositories.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2016 02:33: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"WPTavern: How Authors With Plugins in the Official Directory Can Use Tags to Get a Moderator’s Attention\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54441\";s:7:\"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:113:\"http://wptavern.com/how-authors-with-plugins-in-the-official-directory-can-use-tags-to-get-a-moderators-attention\";s: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:2627:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/WordPressAdviceForNewUsers.png\"><img class=\"size-full wp-image-44085\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/WordPressAdviceForNewUsers.png?resize=612%2C237\" alt=\"WordPress Advice For New Users\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/99329675@N02/11064947983\">What You Need To Know About Food Poisoning</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-sa/2.0/\">(license)</a>\n<p>It&#8217;s almost inevitable that as a WordPress plugin gains popularity, it will receive a bad review. How plugin authors handle and respond to bad reviews is crucial, especially in a public forum. Mika Epstein, who helps review plugins before they&#8217;re added to the directory and is a dedicated support forum volunteer, <a href=\"https://make.wordpress.org/plugins/2016/05/03/handling-bad-reviews/\">gives advice </a>on how to handle and respond to bad reviews.</p>\n<p>Bad reviews are classified as those written as spam, trolling, emotional blackmail for support, and those that should have been a support post. Since the plugin review system is powered by bbPress, plugin authors can add tags to reviews in order to draw a moderator&#8217;s attention. The tags include:</p>\n<ul>\n<li><strong>Modlook</strong> &#8211; This tag notifies moderators that a particular thread needs their attention. If you think a review is spam, don&#8217;t respond to it. Instead, add the Modlook and Spam tags and let a moderator decide if the review should be deleted.</li>\n<li><strong>Sockpuppet</strong> &#8211; If you suspect a review is part of a spamming campaign where a group of people are marking a plugin as one or five stars, apply the sockpuppet and modlook tags to the review.</li>\n<li><strong>Wrongplugin</strong> &#8211; Add the wrongplugin tag to the review if you believe it&#8217;s for a different plugin. The team can move the review to the appropriate place.</li>\n<li><strong>Pluginmod</strong> &#8211; Add this tag to a review if you need an administrator&#8217;s attention. This usually results in the team performing a full review of your plugin. If it&#8217;s determined that it breaks any of <a href=\"https://wordpress.org/plugins/about/guidelines/\">the guidelines</a>, it will be removed until they&#8217;re fixed.</li>\n</ul>\n<p>Developers who host plugins in the official directory should make note of these tags and use them when necessary. The tag system is generally unknown to the public but it&#8217;s a great way for moderators to keep on top of the forums and reviews.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2016 01:06:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: WPWeekly Episode 234 – All Things WordCamp with Andrea Middleton\";s:7:\"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:44:\"http://wptavern.com?p=54807&preview_id=54807\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wptavern.com/wpweekly-episode-234-all-things-wordcamp-with-andrea-middleton\";s: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:2896:\"<p>In this episode of WordPress Weekly, Marcus Couch and I are joined by <a href=\"https://thethingwiththestuff.wordpress.com/\">Andrea Middleton</a>, who works at Automattic as a Community Organizer for the WordPress open source project. We discuss a number of topics including, updates to the WordCamp Central website, the <a href=\"https://make.wordpress.org/community/2016/03/02/transitioning-to-wordpress-community-support/\">for-profit subsidiary</a>, and the experimental <a href=\"http://wptavern.com/wordpress-to-launch-experimental-wordcamp-incubator-program\">WordCamp incubator program</a>.</p>\n<p>At the conclusion of our interview with Middleton, Mendel Kurland, GoDaddy&#8217;s Evangelist, joined us to describe his experiences attending DrupalCons. DrupalCons are events similar to WordCamps but on a larger scale. He tells us what the similarities and differences are and the unique things they do that he&#8217;d like to see WordCamps adopt. We close out the show with Marcus&#8217; plugin picks of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://wptavern.com/wordpress-4-5-2-patches-two-security-vulnerabilities\">WordPress 4.5.2 Patches Two Security Vulnerabilities</a><br />\n<a href=\"http://wptavern.com/automattic-is-protecting-its-woo-woothemes-and-woocommerce-trademarks\">Automattic is Protecting its Woo, WooThemes, and WooCommerce Trademarks</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/disable-core-update-email/\">Disable WordPress Core Update Email</a> allows used to disable the default notification email sent by WordPress after an automatic core update is applied.</p>\n<p><a href=\"https://wordpress.org/plugins/downgrade/\">Downgrade </a>enables users to easily downgrade WordPress to an earlier version. It&#8217;s a handy diagnostics tool that helps determine if a new WordPress release is the cause of errors.</p>\n<p><a href=\"https://wordpress.org/plugins/woo-customer-insight\">Woo Customer Insight </a>provides greater insight into what visitors are doing on your sites. It allows you to see the pages your customers are visiting, where they&#8217;re clicking, the time spent on the different pages, and more.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 18th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #234:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2016 23:23:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Matt: .Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=46554\";s:7:\"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:27:\"https://ma.tt/2016/05/blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:858:\"<p>It&#8217;s now public that Automattic is the company behind Knock Knock Whois There LLC, the registry for the new .blog TLD. (And a great pun.) We wanted to stay stealth while in the bidding process and afterward in order not to draw too much attention, but nonetheless the cost of the .blog auction got up there (people are <a href=\"http://www.theregister.co.uk/2015/02/13/who_just_bought_dotblog_for_30m/\">estimating around $20M</a>). I&#8217;m excited we won and think that it will be both an amazing business going forward and give lots of folks an opportunity to have a fantastic domain name in a new namespace and with an easy-to-say TLD. <a href=\"https://dotblog.wordpress.com/\">You can sign up to be first in line to reserve a domain here</a>. If you have a trademark you can get in August, and then October for the &#8220;land rush.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2016 19:23:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Automattic to Oversee the Sale and Registration of Top-Level .Blog Domains\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54788\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wptavern.com/automattic-to-oversee-the-sale-and-registration-of-top-level-blog-domains\";s: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:2974:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/blogging.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/blogging.jpg?resize=960%2C521\" alt=\"photo credit: Luis Llerena\" class=\"size-full wp-image-54799\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/3ZHG0XOIT6\">Luis Llerena</a>\n<p>Automattic <a href=\"https://en.blog.wordpress.com/2016/05/12/coming-soon-new-blog-domains-for-websites/\" target=\"_blank\">announced</a> today that it will begin offering top-level .blog domain registration starting in August 2016. The .blog domain extension will be available to both WordPress and non-WordPress sites.</p>\n<p>According to <a href=\"https://twitter.com/markarms\" target=\"_blank\">Mark Armstrong</a>, an Automattic subsidiary is exclusively managing the registration of .blog domains and will be offering it for purchase through WordPress.com and other domain registrars.</p>\n<p>&#8220;Automattic subsidiary Knock Knock Whois There LLC, in partnership with the domain company Primer Nivel, won the rights to the .blog domain in 2015 through an auction process overseen by the Internet Corporation for Assigned Names and Numbers (ICANN), the non profit organization that oversees namespaces of the internet,&#8221; Armstrong said.</p>\n<p>In an <a href=\"https://ma.tt/2016/05/blog/\" target=\"_blank\">announcement</a> on his blog, Automattic CEO Matt Mullenweg said they used the Knock Knock Whois There LLC company name to &#8220;stay stealth while in the bidding process,&#8221; which closed around $19 million.</p>\n<p>Although WordPress.com is currently providing the registration information site at <a href=\"https://dotblog.wordpress.com/\" target=\"_blank\">dotblog.wordpress.com</a>, Armstrong said that the company is using <a href=\"http://www.nominet.uk/\" target=\"_blank\">Nominet</a> (the backend registry provider for .UK) to provide the technical infrastructure for managing the domain extension.</p>\n<p>Registration for .blog domains will be offered in a phased approach during the second half of 2016, according to the following estimated timeframe:</p>\n<ul>\n<li><strong>Sunrise (August):</strong> Trademark owners will be able to register .blog domains associated with their brands</li>\n<li><strong>Landrush (October):</strong> Before .blog becomes available to the public, domains may be registered during the landrush period on an application basis.</li>\n<li><strong>General Availability (November):</strong> Automattic plans to begin offering .blog domains to the general public before the end of the year.</li>\n</ul>\n<p>With the exclusive rights to manage the sale of millions of .blog domains, Automattic has the opportunity to promote WordPress.com as a potential host for new registrants. The company hasn&#8217;t finalized the price but Armstrong said it will be &#8220;in the standard range for new top-level domains with some premium pricing for higher-value names.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2016 18:19:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: Critical Vulnerabilities Found in PhpStorm, Immediate Update Advised\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54770\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://wptavern.com/critical-vulnerabilities-found-in-phpstorm-immediate-update-advised\";s: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:2128:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/phpstorm-wp-feature.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/phpstorm-wp-feature.jpg?resize=1025%2C471\" alt=\"phpstorm-wp-feature\" class=\"aligncenter size-full wp-image-30739\" /></a></p>\n<p>JetBrains <a href=\"http://blog.jetbrains.com/blog/2016/05/11/security-update-for-intellij-based-ides-v2016-1-and-older-versions/\" target=\"_blank\">announced</a> today that it has released a security update for PhpStorm and all of its other IntelliJ-based IDEs due to a set of critical vulnerabilities:</p>\n<blockquote><p>The cross-site request forgery (CSRF) flaw in the IDE’s built-in webserver allowed an attacker to access local file system from a malicious web page without user consent.</p>\n<p>Over-permissive CORS settings allowed attackers to use a malicious website in order to access various internal API endpoints, gain access to data saved by the IDE, and gather various meta-information like IDE version or open a project.</p></blockquote>\n<p>PhpStorm is by far <a href=\"http://www.sitepoint.com/best-php-ide-2014-survey-results/\" target=\"_blank\">the most favored IDE for PHP developers</a>. It&#8217;s also widely used among WordPress developers, especially since <a href=\"http://wptavern.com/phpstorm-8-released-with-full-wordpress-support\" target=\"_blank\">version 8 added official support for WordPress</a>.</p>\n<p>The update issued today patches the critical vulnerabilities inside the underlying IntelliJ platform that powers nearly a dozen popular IDEs. Installing the update is as easy as selecting &#8216;Check for Updates&#8217; inside the IDE. Alternatively, customers can download the most recent version from JetBrains.com and the <a href=\"http://blog.jetbrains.com/blog/2016/05/11/security-update-for-intellij-based-ides-v2016-1-and-older-versions/\" target=\"_blank\">security announcement</a> includes links to download older versions.</p>\n<p>Although the JetBrains security team is not aware of these vulnerabilities having been exploited, immediate update is recommended.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2016 22:26:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: GitHub Introduces Unlimited Private Repositories, Hikes Prices for Organizations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54746\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://wptavern.com/github-introduces-unlimited-private-repositories-hikes-prices-for-organizations\";s: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:7590:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/github-octocat.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/github-octocat.jpg?resize=857%2C400\" alt=\"github-octocat\" class=\"aligncenter size-full wp-image-42456\" /></a></p>\n<p>GitHub has been inundated with negative feedback after <a href=\"https://github.com/blog/2164-introducing-unlimited-private-repositories\" target=\"_blank\">announcing a major change to its pricing</a> today. All paid plans now include unlimited private repositories, but there&#8217;s a catch. The new pricing structure requires GitHub.com organizations to purchase a seat for each user. At $9 per user/month, collaborating on private repositories is now far more costly than the legacy plans which started at $25/month for 10 repositories and unlimited members.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/github-pricing.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/github-pricing.png?resize=1025%2C392\" alt=\"github-pricing\" class=\"aligncenter size-full wp-image-54756\" /></a></p>\n<p>The change is good news for individual developers with paid accounts, as they are no longer charged on a per-repository basis. However, many owners of organizations are finding the new pricing to be untenable and are actively considering alternatives. For comparison, Bitbucket offers unlimited private repositories and <a href=\"https://bitbucket.org/product/pricing\" target=\"_blank\">charges $1/user/month</a>. Unlimited users caps out at $200/month.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/Krogsgard\">@Krogsgard</a> EDD org alone will go from $25 per month to $592 per month <a href=\"https://twitter.com/github\">@github</a></p>\n<p>&mdash; Pippinsplugins (@pippinsplugins) <a href=\"https://twitter.com/pippinsplugins/status/730396802638176257\">May 11, 2016</a></p></blockquote>\n<p></p>\n<p>While unlimited private repositories is an exciting benefit that enables developers to make their code more modular, it isn&#8217;t a benefit that every organization needs.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/github\">@github</a> Terrible news. I work on an open-source organization &gt;100 devs. We have 2 private repos for internal projects. $900+ vs $25 really!?</p>\n<p>&mdash; João Ventura (@jcnventura) <a href=\"https://twitter.com/jcnventura/status/730319187667759104\">May 11, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/williamsba\">@williamsba</a> ours jumped to $1,204 :-( <a href=\"https://twitter.com/github\">@github</a></p>\n<p>&mdash; Tom Willmot (@tomwillmot) <a href=\"https://twitter.com/tomwillmot/status/730391291691995136\">May 11, 2016</a></p></blockquote>\n<p></p>\n<p><a href=\"https://easydigitaldownloads.com/\" target=\"_blank\">Easy Digital Downloads</a> creator Pippin Williamson <a href=\"http://www.twitlonger.com/show/n_1solvjd\" target=\"_blank\">explained</a> why he is frustrated with what amounts to a 2,276% increase in costs for his organization:</p>\n<blockquote><p>I actually have no problems with the pricing for new organizations. It&#8217;s their space and they provide a huge number of valuable tools. It is absolutely worth it.</p>\n<p>The problem I have is the drastic increase for existing customers. It&#8217;s largely the principal of increasing a customer&#8217;s cost by 2,276% without giving them any additional value.</p>\n<p>The value that Github provides me and my team does not change at all with the new pricing, only what I pay per month.</p></blockquote>\n<p>Samuel &#8220;Otto&#8221; Wood <a href=\"http://www.twitlonger.com/show/n_1solviv\" target=\"_blank\">contends</a> that GitHub&#8217;s $9/user/month is a reasonable price to pay for having all the functionality of GitHub hosted for an organization but that the alternative of building your own is far more economical.</p>\n<blockquote><p>A &#8220;private&#8221; repo is, you know, private. On your own server. Git is, after all, decentralized. You could plop a normal git repo on any private VPS you like in a matter of under an hour. If you&#8217;re collaborating with a small group of like 5 people, then coordination is not really a big deal that I&#8217;d pay $45 a month to use GitHub for it. You can use any tooling you like, make any website you like. You could probably reproduce the important parts of GitHub that you need for your private setup using WordPress in like a day or two. </p>\n<p>It just seems to me that any advantages of using GitHub at all seem largely nullified by using private repos. Yes, collaboration and using the same toolset you are used to, I get that. But here you&#8217;re falling prey to vendor lock-in once again. You&#8217;re used to it, you like it, you&#8217;re afraid of change, pay up. Simple. </p>\n<p>The advantage of open source software is the freedom to say &#8220;up yours&#8221; and build your own version instead. Git is open source. Think about it. A $15 a month VPS could easily fit your needs for both privacy and collaboration.</p></blockquote>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/github\">@github</a> found a way to be more expensive than the datacenter that runs my app. Seriously, what\'s happening at <a href=\"https://twitter.com/github\">@github</a> ???</p>\n<p>&mdash; Adilson Carvalho (@lcadilson) <a href=\"https://twitter.com/lcadilson/status/730405070819471361\">May 11, 2016</a></p></blockquote>\n<p></p>\n<p>GitHub has established itself as the de facto code collaboration site by offering free hosting for public, open source repositories. However, the emphasis on &#8220;social coding&#8221; no longer extends to private repositories as organization owners will have little incentive to add more collaborators under the new pricing structure. It discourages organizations from adding users to be bug reporters or third-party collaborators. Teams and agencies hit hardest by the changes are now examining competitors like Bitbucket and self-hosted GitLab.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Today is for <a href=\"https://twitter.com/gitlab\">@gitlab</a> what 2007 was for <a href=\"https://twitter.com/WordPress\">@WordPress</a>. If code is poetry, Gitlab is your library. Own your code like you own your content. ❤️</p>\n<p>&mdash; John James Jacoby (@JJJ) <a href=\"https://twitter.com/JJJ/status/730417868047790080\">May 11, 2016</a></p></blockquote>\n<p></p>\n<p>Organization owners will not be forced onto the new pricing plans immediately and GitHub promises to give a year&#8217;s notice before mandating a switch to the new plans:</p>\n<blockquote><p>We want everyone to have a plan with unlimited private repositories, but don’t worry—you are welcome to stay on your current plan while you evaluate the new cost structure and understand how to best manage your organization members and their private repository access. And while we&#8217;re currently not enforcing a timeline to move, rest assured that you&#8217;ll have at least 12 months notice before any mandated change to your plan.</p></blockquote>\n<p>While many individual developers will see lower monthly prices and even prorated credits on their accounts, the exponential cost increase for GitHub&#8217;s largest customers may cause a mass exodus to the company&#8217;s more affordable competitors. Are you moving your organization off of GitHub? Let us know in the comments.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2016 19:27:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: Affinity: A Free WordPress Wedding Theme from 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54688\";s:7:\"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:\"http://wptavern.com/affinity-a-free-wordpress-wedding-theme-from-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3832:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/affinity.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/affinity.png?resize=800%2C471\" alt=\"affinity\" class=\"aligncenter size-full wp-image-54691\" /></a></p>\n<p>Affinity is the latest addition to WordPress.com&#8217;s small collection of <a href=\"https://wordpress.com/themes/search/wedding/\" target=\"_blank\">themes created specifically for weddings</a>. This highly customizable, elegant theme was designed by <a href=\"http://carolinemoore.net/\" target=\"_blank\">Caroline Moore</a> with weddings and family announcements in mind.</p>\n<p>Affinity is a one-page theme with support for five different panels. Each panel&#8217;s content can be assigned in the customizer under Theme Options by selecting a page from a drop-down.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/panel.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/panel.png?resize=660%2C231\" alt=\"panel\" class=\"aligncenter size-full wp-image-54717\" /></a></p>\n<p>With the customizable panel approach users are not locked into providing content for sections they don&#8217;t need. Single posts and pages support full screen featured images that, if used as a panel, become the background of that section. Affinity offers the option to set the header image opacity to create better contrast with header text. Users can also enable or disable scrolling on the header and front-page featured images.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/affinity-home-page.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/affinity-home-page.png?resize=200%2C474\" alt=\"affinity-home-page\" class=\"alignright size-full wp-image-54693\" /></a></p>\n<p>Affinity includes support for a sidebar widget area and three optional widget areas in the footer. If widgets are added to the sidebar, the one-column layout becomes a two-column layout. It also has a fullwidth page template for removing the sidebar on select pages.</p>\n<p>The different panels give users ample space for adding photos, links to registries, personal stories, info about the bridal party, and anything else related to the event. Affinity includes a Guestbook page template with a special format for displaying visitors&#8217; comments. Turning the Guestbook on is as easy as setting the page template and making sure that comments are enabled.</p>\n<p>Another unique feature of the theme is its post intro area that displays beneath the headline before the first paragraph. It pulls content from the excerpt field and post authors can use it to capture readers&#8217; attention with a quick summary or highlight.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/affinity-post-intro.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/affinity-post-intro.png?resize=660%2C328\" alt=\"affinity-post-intro\" class=\"aligncenter size-full wp-image-54729\" /></a></p>\n<p>Check out the <a href=\"https://affinitydemo.wordpress.com/\" target=\"_blank\">live demo</a> to see the theme in action. It shows an example of panels that display quotes, an RSVP form, event details, and an engagement story.</p>\n<p>Since no wedding or family announcement is the same, Affinity&#8217;s multi-panel approach offers flexibility for many different types of uses. If you&#8217;re creating a wedding website and are not finding enough customization options with a hosted service, this theme makes it quick and easy to set it up with WordPress. It&#8217;s not yet available on WordPress.org, but you can download a copy for your self-hosted site for free from the sidebar of its <a href=\"https://wordpress.com/themes/affinity\" target=\"_blank\">homepage on WordPress.com</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2016 06:52: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: Help WPCampus Gather Data on How Schools and Campuses Use WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54650\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://wptavern.com/help-wpcampus-gather-data-on-how-schools-and-campuses-use-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1247:\"<p>The organizers of <a href=\"https://2016.wpcampus.org/\">WPCampus</a> are <a href=\"https://www.surveymonkey.com/r/wpcampus05-2016\">seeking feedback</a> via a survey on how schools and campuses utilize WordPress in their environments. The survey consists of five sections:</p>\n<ul>\n<li>How Do You Use WordPress on Campus</li>\n<li>Site Demographics, Traffic, and Data</li>\n<li>Plugins, Themes, and Features</li>\n<li>Security, Performance, and Hosting</li>\n<li>Your Team Structure &amp; Workflows</li>\n</ul>\n<p>There are a couple of perks for those who fill out the survey. Respondents will receive an anonymized version of the complete data set. Those who complete four or more sections will be entered into a drawing to win a free ticket to the conference and will receive a $5 Starbucks or Amazon Gift card.</p>\n<p>Answer the questions that you know and skip the ones you don&#8217;t. The team needs as much data as possible to provide a clearer picture of WordPress&#8217; use in higher education. If you know someone or an organization that uses WordPress in higher education, please <a href=\"https://www.surveymonkey.com/r/wpcampus05-2016\">share the survey</a> with them. The survey closes on May 27th.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2016 03:21:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: What Do You Think of the Recommended Plugins Page in WordPress?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54437\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wptavern.com/what-do-you-think-of-the-recommended-plugins-page-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3913:\"<p>In late 2014, <a href=\"http://wptavern.com/wordpress-4-1-to-introduce-plugin-recommendations\">WordPress 4.1 added</a> a Recommended Plugins tab that takes into account the plugins you have installed and suggests plugins based on which ones are commonly used together. After nearly a year and a half since it was added, I asked the <a href=\"https://twitter.com/wptavern/status/727578470415532032\">Tavern&#8217;s Twitter followers</a> if they have ever installed plugins recommended by WordPress.</p>\n<p>I was surprised to discover that some people don&#8217;t know the tab exists.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/wptavern\">@wptavern</a> There\'s a \"Recommended\" tab?!?</p>\n<p>&mdash; Joe Taiabjee (@joetek) <a href=\"https://twitter.com/joetek/status/727581218414407681\">May 3, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/wptavern\">@wptavern</a> I\'ve just noticed the Recommended tab. It seems to show those plugins with most Active Installs. Interesting, but a bit \'hidden\'</p>\n<p>&mdash; Alejandro Vargas S. (@Alejandro_V_S) <a href=\"https://twitter.com/Alejandro_V_S/status/727836820159930369\">May 4, 2016</a></p></blockquote>\n<p></p>\n<p>Steve Brown says the recommendations are useful.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/wptavern\">@wptavern</a> yep :) very useful feature indeed</p>\n<p>&mdash; Steve Brown (@stevna) <a href=\"https://twitter.com/stevna/status/727681984504287232\">May 4, 2016</a></p></blockquote>\n<p></p>\n<p>Some people view the page as an opportunity for Automattic to advertise its plugins while others don&#8217;t trust the recommendations.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/wptavern\">@wptavern</a> I have no needs for the Automattic plugins that are almost only being recommended there</p>\n<p>&mdash; Marko Heijnen (@markoheijnen) <a href=\"https://twitter.com/markoheijnen/status/727624592399998976\">May 3, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/wptavern\">@wptavern</a> Once. However 10 of the plugins recommended on page 1 are untested with my version of WP. So wouldnt rely on the recommendations</p>\n<p>&mdash; WPin.me (@wp_in) <a href=\"https://twitter.com/wp_in/status/727725233843671040\">May 4, 2016</a></p></blockquote>\n<p></p>\n<p>When I viewed the recommended plugins page in 2014, the results displayed plugins that weren&#8217;t updated in years.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/RecommendedPluginsTab.png\"><img class=\"size-full wp-image-35318\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/RecommendedPluginsTab.png?resize=1025%2C527\" alt=\"Plugins Recommended To Me Based on Data of Sites with Similar Plugins Installed\" /></a>Plugins Recommended To Me Based on Data of Sites with Similar Plugins Installed\n<p>Today, the page displays more relevant results with recently updated plugins. On the first page of results for WP Tavern, only one plugin from Automattic is recommended. The second page of results doesn&#8217;t list any plugins authored by Automattic.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/2016RecommendedPlugins.png\"><img class=\"size-full wp-image-54616\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/2016RecommendedPlugins.png?resize=1025%2C514\" alt=\"Recommended Plugins in 2016\" /></a>Recommended Plugin Results in 2016\n<p>To help determine how useful the recommended plugins page is, I&#8217;d like you to take this short survey. Results will be displayed on Tuesday, May 17th. In addition to the survey, you can leave your feedback in the comments.</p>\n<div class=\"pd-embed\" type=\"type\"></div>\n<p></p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2016 03:19:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Automattic is Protecting its Woo, WooThemes, and WooCommerce Trademarks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54645\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://wptavern.com/automattic-is-protecting-its-woo-woothemes-and-woocommerce-trademarks\";s: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:6735:\"<p>When <a href=\"http://wptavern.com/automattic-acquires-woocommerce\">Automattic acquired WooThemes in 2015</a>, it gained employees, plugins, themes, and the company&#8217;s trademarks. These trademarks include, standard character marks, logos, and specific graphics such as the Verified WooExpert badges. One of the responsibilities of a trademark owner is to protect it from infringement.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/VerifiedWooExpertServicemark.png\"><img class=\"size-full wp-image-54702\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/VerifiedWooExpertServicemark.png?resize=1025%2C621\" alt=\"Verified WooExpert Service Mark\" /></a>Verified WooExpert Service Mark\n<p>WooGPL is a service that provides customers with commercial themes, plugins, and extensions for WooCommerce at a discounted rate. In March, Automattic <a href=\"https://woogpl.com/woogpl-is-closing/\">sent Billy Ablett</a>, owner of <a href=\"https://woogpl.com\">WooGPL</a>, the following notice that informs him that his domain infringes the Woo and WooCommerce trademarks.</p>\n<blockquote><p>I’m writing to you on behalf of Automattic Inc. regarding your use of the Woo and WooCommerce trademarks.</p>\n<p>As you may know, Automattic owns the Woo, WooCommerce, and WooThemes brands, as well as the associated trademarks. We recently learned of https://woogpl.com, which actively makes use of our registered trademarks in both its name and promotion. We are very concerned that your use of Woo and WooCommerce will create confusion by communicating that your WooCommerce products are endorsed by or associated with Automattic, when in fact it is not.</p>\n<p>While Automattic appreciates that you are providing products that build on WooCommerce open source software, that fact does not authorize you to use Woo, WooThemes or WooCommerce trademarks.</p>\n<p>To minimize user confusion and to protect our own intellectual property, we unfortunately must insist that you take prompt steps to change your domain name to something that doesn’t include &#8216;Woo&#8217; in the prefix, and change your product descriptions to avoid confusion and potentially misleading consumers to believe they are purchasing our products. An example of this would be: WooCommerce Email Customiser Pro would need to be changed to Email Customiser Pro for WooCommerce.</p>\n<p>For more information, please see our <a href=\"https://www.woothemes.com/style-guide/#sg-trademarks\">Trademark Guidelines</a>.</p>\n<p>While we are appreciative that you have included a disclaimer on your site, unfortunately this would not be sufficient and we would still insist that the domain name and product names be changed.</p></blockquote>\n<p>While it&#8217;s not the sole reason <a href=\"https://woogpl.com/woogpl-is-closing/\">WooGPL is shutting down</a>, the notice provides a convenient opportunity to rebrand to <a href=\"https://www.gplkit.com/\">GPL Kit</a>, something the company was already planning to do.</p>\n<p>&#8220;We would have eventually closed down WooGPL due to GPL Kit however, it would have been great to close it down on our terms when the time was right,&#8221; Daniel, who is part of the GPL Kit team told the Tavern.</p>\n<p>Daniel says that when he started WooGPL there wasn&#8217;t a trademark registered with the Woo character mark until October of 2015.</p>\n<p>A search of the United States Patent and Trademark Office for Woo contains over 1K results. However, this is the only character mark for Woo that I found. The filing date is October 22nd, 2015 and is in the approval process.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/WooCharacterMark.png\"><img class=\"size-full wp-image-54703\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/WooCharacterMark.png?resize=1003%2C557\" alt=\"Woo Character Mark\" /></a>Woo Character Mark\n<h2>When You Should Ask For Permission</h2>\n<p>WooThemes has a <a href=\"https://www.woothemes.com/style-guide/#sg-trademarks\">style guide</a> on its site that explains how the brand is used and has details on when Woo™, WooCommerce®, and WooThemes® names, logos, and related icons collectively known as Woo Marks can be used without permission. The following chart provides some examples.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/PermissionChartForWooTrademarks.png\"><img class=\"size-full wp-image-54704\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/PermissionChartForWooTrademarks.png?resize=1010%2C814\" alt=\"Examples of When You Do and Don\'t Need Permission\" /></a>Examples of When You Do and Don&#8217;t Need Permission\n<p>If you&#8217;re in doubt, you can email Automattic&#8217;s trademark team  <a href=\"mailto:trademarks@automattic.com\">trademarks @ automattic.com</a> to receive clarification.</p>\n<h2>Woo&#8217;s at Risk?</h2>\n<p>There are quite a few businesses in the WordPress ecosystem that use Woo in their name and domain. <a href=\"http://www.woorockets.com/\">WooRockets</a> is a WooCommerce theme shop while <a href=\"http://wooassist.com/\">WooAssist</a> provides support and maintenance for store owners.</p>\n<p>I reached out to both companies to determine if Automattic sent them the same notice it sent to WooGPL. While I didn&#8217;t receive a response from WooRockets, John Gamour of WooAssist provided the Tavern with the following statement:</p>\n<blockquote><p>No, we haven&#8217;t been contacted by Automattic about that. It would be dissapointing if we were asked to change our name as our founder Nicholas Jones reached out to WooThemes before starting Wooassist and they gave the OK. We have also worked with Matt Cohen and James Koster on a project and nothing was ever mentioned about our name.</p></blockquote>\n<p>I tried to get in touch with Paul Sieminski, legal counsel for Automattic, to learn what the criteria is for violating the trademarks, who&#8217;s at risk, and how long they have enforced the marks but he could not be reached for comment.</p>\n<h2>Better to be Safe Than Sorry</h2>\n<p>As WooGPL discovered, adding a disclaimer to the bottom of your sites may not be enough. Considering the cost and potential impacts of re branding a company or product, it&#8217;s important to know as soon as possible if you&#8217;re infringing a company&#8217;s trademarks.</p>\n<p>Business owners in the WooCommerce and WooThemes ecosystem should double-check the <a href=\"https://www.woothemes.com/style-guide/#sg-trademarks\">style guide</a> to make sure you&#8217;re not violating any guidelines. Owners can also take a proactive step and contact Automattic&#8217;s trademark team to determine if your business meets the requirements.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2016 20:21:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: WooCommerce Releases Storefront 2.0 with Major Improvements to Mobile Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54641\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://wptavern.com/woocommerce-releases-storefront-2-0-with-major-improvements-to-mobile-design\";s: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:3509:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/storefront-update.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/storefront-update.png?resize=1025%2C451\" alt=\"storefront-update\" class=\"aligncenter size-full wp-image-54669\" /></a></p>\n<p><a href=\"https://wordpress.org/themes/storefront/\" target=\"_blank\">Storefront</a>, the official WooCommerce theme built to work seamlessly with the plugin, has just passed the <a href=\"https://www.woothemes.com/2016/05/storefront-2-0-release/\" target=\"_blank\">2.0 milestone</a>. This release introduces a new &#8220;best sellers&#8221; section to the homepage and adds compatibility with the upcoming WooCommerce 2.6’s tabbed “My Account” section and the average rating widget.</p>\n<p>The most important update in Storefront 2.0 is the redesigned mobile experience. According to <a href=\"http://resources.mobify.com/50-mobile-commerce-stats.html\" target=\"_blank\">Mobify</a>, 30% of mobile shoppers will abandon a transaction if the experience is not optimized for mobile. <a href=\"http://www.themobileplaybook.com/\" target=\"_blank\">Google&#8217;s Mobile Playbook</a> says that not having a mobile optimized website is like closing your store one day each week. To keep pace with the expectations of mobile buyers, WooCommerce has drastically reduced Storefront&#8217;s mobile header height by 60% and has added the search, shopping cart, and account links to a sticky bottom menu for easy access.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/storefront-mobile-home.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/storefront-mobile-home.png?resize=799%2C697\" alt=\"storefront-mobile-home\" class=\"aligncenter size-full wp-image-54671\" /></a></p>\n<p>Storefront 2.0 includes many design improvements that make the theme cleaner and more flexible. This update removes Helvetica in favor of Source Sans, which WooCommerce says gives them access to a wider variety of weights they can use to &#8220;provide greater depth and cohesion.&#8221; Other notable design changes include:</p>\n<ul>\n<li>Borders have been largely removed so that pages don’t feel quite so broken up.</li>\n<li>The breadcrumb and the main navigation are now wrapped in their own content regions, cementing them as unique components.</li>\n<li>Product reviews and comments tweaked to make them cleaner and more scannable.</li>\n<li>Blog post meta has been redesigned to include the author Gravatar.</li>\n<li>Softer design treatment for tables with colors based on the main background color.</li>\n<li>oEmbeds have been styled to match the rest of Storefront (including typography, padding, colors).</li>\n<li>Integrated WordPress 4.5’s custom logo feature so users can add a logo without using a plugin.</li>\n</ul>\n<p><a href=\"https://wordpress.org/themes/storefront/\" target=\"_blank\">Storefront</a> is active on more than 50,000 websites. There are nearly a dozen free themes on WordPress.org that use it as a parent theme and another dozen commercial themes on WooThemes.com. If you use a heavily customized Storefront child theme, you may want to test its compatibility with the 2.0 update on a development site to ensure that there are no visual surprises. If you have any ideas or recommendations for updates to Storefront, you can leave feedback on the theme&#8217;s <a href=\"http://ideas.woothemes.com/forums/275029-storefront\" target=\"_blank\">idea board</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 May 2016 22:23:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WPTavern: Timber 1.0 Is Now Available on WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54396\";s:7:\"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:\"http://wptavern.com/timber-1-0-is-now-available-on-wordpress-org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5932:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/timber.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/timber.png?resize=1025%2C405\" alt=\"timber\" class=\"aligncenter size-full wp-image-54630\" /></a></p>\n<p>Last week the creators of <a href=\"https://wordpress.org/plugins/timber-library/\" target=\"_blank\">Timber</a>, the plugin that enables WordPress theme developers to write HTML using the <a href=\"http://twig.sensiolabs.org/\" target=\"_blank\">Twig Template Engine</a>, released version 1.0 on WordPress.org. The plugin is active on more than 10,000 websites where theme authors have elected to keep PHP files separate from HTML. Timber is built on DRY and MVC principles to solve the problem stated in its unofficial tagline: <em>&#8220;Because WordPress is awesome, but the_loop isn&#8217;t.&#8221;</em></p>\n<p>Over the past four years, the open source project has evolved from being a starter theme to a plugin that can be added to existing themes. It is now used on <a href=\"http://upstatement.com/timber/#showcase\" target=\"_blank\">thousands of websites</a> and has 83 <a href=\"https://github.com/timber/timber/graphs/contributors\" target=\"_blank\">contributors</a> listed on GitHub.</p>\n<p>&#8220;In 2012 I was getting more into WordPress after doing lots of JS development with <a href=\"http://handlebarsjs.com/\" target=\"_blank\">Handlebars</a> (a JS templating language),&#8221; Timber creator Jared Novack said. &#8220;I went to WordCamp Providence to learn more about state-of-the-art WordPress ways. I remember thinking: &#8216;This is great, but I really miss the cleanliness of Handlebars &#8212; I wish someone would make something like that for WordPress.&#8217; That&#8217;s when I realized, I was that someone.&#8221;</p>\n<p>Novack was playing around with <a href=\"http://www.smarty.net/\" target=\"_blank\">Smarty</a> and <a href=\"https://mustache.github.io/\" target=\"_blank\">Mustache</a> before he finally discovered Fabien Potencier&#8217;s <a href=\"http://twig.sensiolabs.org/\" target=\"_blank\">Twig project</a>.</p>\n<p>&#8220;The syntax felt so natural I almost didn&#8217;t need to read the docs (don&#8217;t worry, I did),&#8221; he said. &#8220;I realized what I needed was a way to marry Twig and WordPress, and thus: Timber was born.&#8221;</p>\n<p>At that time Novack&#8217;s company, <a href=\"https://upstatement.com/\" target=\"_blank\">Upstatement</a>, was beginning development on a big new project for Random House to enable their marketers to generate unique sites from a library of templates. This client project became Timber&#8217;s first test case.</p>\n<p>&#8220;Originally, Timber was a parent theme, like _s. But after we completed the Random House project, I realized I wanted to apply Timber functionality to existing sites,&#8221; Novack said. &#8220;I converted it into a plugin that could be employed on existing themes which is the form it takes today.&#8221;</p>\n<p>The plugin allows designers skilled with HTML and CSS to create themes without having extensive knowledge of PHP and WordPress functions. Timber successfully powers sites like Michael Bloomberg&#8217;s <a href=\"https://www.thetrace.org/\" target=\"_blank\">The Trace</a>, <a href=\"http://everytown.org/\" target=\"_blank\">Everytown for Gun Safety</a>, <a href=\"https://www.hoteltonight.com/\" target=\"_blank\">Hotel Tonight</a>, and the <a href=\"http://harvardlawreview.org/\" target=\"_blank\">Harvard Law Review</a>.</p>\n<h3>Timber 1.0 Puts the Project on the Path of Stability</h3>\n<p>As of Timber 1.0, developers can now include the project as a plugin or require it as a <a href=\"https://packagist.org/packages/timber/timber\" target=\"_blank\">Composer dependency</a>.</p>\n<p>&#8220;The big news is that 1.0 represents a maturing of the platform — developers can use Timber and Twig with confidence that they’re building on top of a stable and universal platform,&#8221; Novack said.</p>\n<p>This release sheds years of deprecated functions and methods dating back to the project&#8217;s early days in 2013. Novack said that technical and documentation debt were the biggest hurdles in getting to 1.0.</p>\n<p>&#8220;In hindsight it’s so easy to build stuff, but so hard to build a complete system,&#8221; he said. &#8220;When Timber started it was just for me and the documentation could just live in my head. I’d add and improve stuff and then live with some of the quirks.&#8221;</p>\n<p>As the project and its contributors grew, Novack found it difficult to keep up with the growing codebase while running his company. Bringing it to a place of maturity with up-to-date automated testing and documentation took nearly a year.</p>\n<p>&#8220;Backwards compatibility was also a major challenge,&#8221; Novack said. &#8220;As ideas and new code got submitted, development slowed as every decision might have implications for existing users. We would deprecate features, but I was hesitant to remove things that I knew were mistakes, but that people were using.&#8221;</p>\n<p>Developers are encouraged to read the <a href=\"https://github.com/timber/timber/wiki/1.0-Upgrade-Guide\" target=\"_blank\">1.0 Upgrade Guide</a>, as there may be additional steps required depending on how Timber is being used. This release adds a few new features but the most important change is the bulk removal of older sections of the codebase. The upgrade guide outlines all of the object properties and static methods that will need to be updated so that nothing breaks. In the future, Timber-powered themes will be easier to maintain, with fewer quirks and better-documented features.</p>\n<p>&#8220;The key learning for me is that the ultimate &#8216;killer feature&#8217; is stability and predictability,&#8221; Novack said. &#8220;When everything is organized cleanly and developers can use the things that they would intuitively expect — that’s success.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 May 2016 17:52:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Post Status: WordPress Security — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=24378\";s:7:\"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://poststatus.com/wordpress-security-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2296:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle &#8212; the CTO of Human Made &#8212; and Brian Krogsgard.</p>\n<p><span>Security &#8212; in WordPress core, distributed plugins and themes, and in our custom code &#8212; is a constant battle. It’s important to be vigilant with our security practices, from the perspective of managing our websites and when writing code. In this episode, Joe and Brian discuss the nature of WordPress security, best practices for writing secure code, and dig into various situations WordPress developers and site owners may run into.</span></p>\n<a href=\"https://audio.simplecast.com/37301.mp3\">https://audio.simplecast.com/37301.mp3</a>\n<p><a href=\"http://audio.simplecast.com/37301.mp3\">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"http://codex.wordpress.org/Hardening_WordPress\">Hardening WordPress</a></li>\n<li><a href=\"https://wordpress.org/about/security/\">About WordPress Security</a></li>\n<li><a href=\"https://make.wordpress.org/themes/2015/05/19/a-guide-to-writing-secure-themes-part-1-introduction/\">A Guide to Writing Secure Themes</a></li>\n<li><a href=\"http://ben.lobaugh.net/uploads/writing-secure-plugins-and-themes/#/\">Writing Secure Plugins &amp; Themes</a> by Ben Lobaugh</li>\n<li><a href=\"https://codex.wordpress.org/Class_Reference/wpdb\">$wpdb</a></li>\n<li><a href=\"https://wpvulndb.com/\">WP Scan</a></li>\n<li><a href=\"https://blog.sucuri.net/2015/03/understanding-wordpress-plugin-vulnerabilities.html\">Understanding Vulnerabilities</a></li>\n</ul>\n<h3>Sponsor: Pagely</h3>\n<p><a href=\"https://pagely.com\"><span>Pagely</span></a><span> offers best in class managed WordPress hosting, powered by the Amazon Cloud, the Internet’s most reliable infrastructure. Post Status is proudly hosted by Pagely. Thank you to </span><a href=\"https://pagely.com\"><span>Pagely</span></a><span> for being a Post Status partner.</span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 May 2016 01:01:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Apple and Podcasting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=46548\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2016/05/apple-and-podcasting/\";s: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:557:\"<p><a href=\"https://marco.org/2016/05/07/apple-role-in-podcasting\">Marco Arment has a great take on how the decentralized nature of podcasting is a feature</a>, not a bug, and Apple being more proactive there would be harmful to the ecosystem. As an aside, since I&#8217;ve been in Houston more recently, which means driving a lot, I&#8217;ve been really loving his app <a href=\"https://overcast.fm/\">Overcast</a> and I opted in to the optional paid subscription for it. I just need to get in more of a habit of listening to podcasts outside of Houston.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 08 May 2016 14:17:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: VersionPress 3.0 Adds New Search Feature, Bulk Undo, and Commit Tracking per Environment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54530\";s:7:\"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:106:\"http://wptavern.com/versionpress-3-0-adds-new-search-feature-bulk-undo-and-commit-tracking-per-environment\";s: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:3843:\"<p><a href=\"https://blog.versionpress.net/2016/04/versionpress-3-0-released/\" target=\"_blank\">VersionPress 3.0</a>, released this week, is the first version since the plugin <a href=\"http://wptavern.com/versionpress-transitions-into-a-free-open-source-project\" target=\"_blank\">became a free, open source project</a>. Creators Borek Bernard and Jan Voráček, who originally attempted to crowdfund the project and then <a href=\"http://wptavern.com/versionpress-raises-400k-in-seed-funding\" target=\"_blank\">raised $400,000 in seed funding</a>, <a href=\"http://wptavern.com/versionpress-transitions-into-a-free-open-source-project\" target=\"_blank\">announced</a> last month that they are transitioning to a public development model.</p>\n<p>The team&#8217;s goal with this release was to polish up the experience of using VersionPress in the default WordPress installation while adding more useful features. However, it is not yet ready for use in production, according to Bernard.</p>\n<p>&#8220;We’re still keeping VersionPress in the <a href=\"http://docs.versionpress.net/en/getting-started/about-eap\" target=\"_blank\">“early access” period</a>, because of the third party plugins integration story but on simpler sites, VersionPress already shines,&#8221; he said.</p>\n<p>One of the most notable new features in VersionPress 3.0 is the plugin&#8217;s ability to track commits with the environment where they were created. Users can view changes in the admin and easily see if they were pushed to the staging or production environment.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/commit-tracking-in-environment.gif\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/commit-tracking-in-environment.gif?resize=725%2C347\" alt=\"commit-tracking-in-environment\" class=\"aligncenter size-full wp-image-54599\" /></a></p>\n<p>Version 3.0 also adds searching capabilities for filtering commits by author, date, commit message, and WordPress action. This release also includes a new bulk undo feature for commits and many improvements to the core versioning engine.</p>\n<h3>VersionPress 4.0 to Focus on Support for 3rd Party Plugins</h3>\n<p>One of the reasons the VersionPress team decided to go with a public development model was to mitigate the plugin&#8217;s conflicts with third-party themes and plugins. This was only possible if the opened up the codebase for contribution from other developers.</p>\n<p>&#8220;While we had most of the WordPress core covered pretty well, there was still this huge ecosystem of WordPress plugins and themes that could cause trouble to VersionPress in million different ways,&#8221; Borek said. &#8220;In the long run, the project had to turn into OSS should it be successful, and, fortunately, we met investors who understood this and supported our vision.&#8221;</p>\n<p>Borek and the team plan to focus on adding support for complex third party plugins in version 4.0, tentatively scheduled for mid-2016. One commenter on the post mentioned that a lack of WooCommerce support is a major thing holding him back from using VersionPress on projects. Borek confirmed that WooCommerce is high on their list of plugins they want to support.</p>\n<p>&#8220;Our goal remains the same: to take all the incredibly powerful functionality of Git and package it so that every WordPress user can use it,&#8221; Borek said.</p>\n<p>Since most site owners interested in this plugin are not running vanilla installations of WordPress, support for third party plugins will be a major leap forward for the project with the potential to greatly expand its user base. Check out VersionPress&#8217; <a href=\"http://docs.versionpress.net/en/release-notes/roadmap\" target=\"_blank\">roadmap</a> to follow along with its progress and see what&#8217;s next.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2016 22:04:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: WordPress 4.5.2 Patches Two Security Vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54594\";s:7:\"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:\"http://wptavern.com/wordpress-4-5-2-patches-two-security-vulnerabilities\";s: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:1441:\"<p>The WordPress core team has <a href=\"https://wordpress.org/news/2016/05/wordpress-4-5-2/\">released WordPress 4.5.2</a> which patches two security vulnerabilities in WordPress versions 4.5.1 and below. The first is a <a href=\"http://www.benhayak.com/2015/06/same-origin-method-execution-some.html\">SOME vulnerability</a> (Same-Origin Method Execution) in Plupload, the third-party library WordPress uses for uploading files. The second is a reflected cross-site-scripting vulnerability in MediaElement.js, the third-party library used for media players.</p>\n<p>Auto updates are rolling out to sites but if you don&#8217;t want to wait, browse to Dashboard &gt; Updates and click the Update Now button. Mario Heiderich, Masato Kinugawa, and Filedescriptor of <a href=\"https://cure53.de/\">Cure53</a> are credited with <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsibly disclosing</a> the vulnerabilities.</p>\n<p>In addition to the release, the core team has <a href=\"https://make.wordpress.org/core/2016/05/06/imagemagick-vulnerability-information/\">published a post</a> concerning the <a href=\"https://imagetragick.com/\">multiple vulnerabilities</a> discovered in ImageMagick, a popular image processing script used on thousands of webhosting servers. The post describes how WordPress is affected and what the team is doing to mitigate issues.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2016 20:01:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: Laravel Releases Valet, a Minimalist Development Environment with Support 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54580\";s:7:\"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:106:\"http://wptavern.com/laravel-releases-valet-a-minimalist-development-environment-with-support-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3404:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/valet-parking.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/valet-parking.jpg?resize=900%2C520\" alt=\"photo credit: Valet Parking, Las Vegas, NV - (license)\" class=\"size-full wp-image-54589\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/55151301@N00/175606346\">Valet Parking, Las Vegas, NV</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nd/2.0/\">(license)</a>\n<p><a href=\"https://laravel.com/\" target=\"_blank\">Laravel</a>, the open source MVC PHP framework created for application development, has just released <a href=\"https://laravel.com/docs/5.2/valet\" target=\"_blank\">Valet</a>, a minimalist development environment for Mac. It uses just 7mb of RAM, because it doesn&#8217;t include Vagrant, Apache, Nginx, or a /etc/hosts file. Here&#8217;s how it works:</p>\n<blockquote><p>Laravel Valet configures your Mac to always run PHP&#8217;s built-in web server in the background when your machine starts. Then, using DnsMasq, Valet proxies all requests on the *.dev domain to point to sites installed on your local machine.\n</p></blockquote>\n<p>Valet supports Laravel, Lumen, Statamic, Craft, Jigsaw, and even has a driver for WordPress. It&#8217;s handy if you just need a simple, fast development environment without virtualization. Developers can also share sites publicly via local tunnels. It&#8217;s as easy as navigating to the site&#8217;s directory in the terminal and running the <code>valet share</code> command, which generates a publicly accessible URL.</p>\n<p><a href=\"https://wppusher.com/\" target=\"_blank\">WP Pusher</a> founder Peter Suhm, who is active in both the Laravel and WordPress communities, wrote a <a href=\"http://blog.wppusher.com/a-minimalist-development-environment-for-wordpress-with-laravel-valet/\" target=\"_blank\">tutorial</a> for setting up Valet for WordPress development.</p>\n<p>&#8220;For larger apps, I generally prefer my development environment to be very similar to production,&#8221; Suhm said. &#8220;Vagrant and Docker are great for that. Valet is great for all those quick and dirty WordPress installations you need, just to test something or quickly work on an idea. If you don’t need anything else besides PHP 7 and a database, Valet is a great setup.&#8221;</p>\n<p>Since it doesn&#8217;t require a ton of dependencies, Valet is quick to set up and doesn&#8217;t require any configuration. Developers don&#8217;t even need to make Valet aware that their app is WordPress &#8211; you can simply drop WordPress core files into a folder on your machine and then access the site in your browser.</p>\n<p>If you&#8217;re looking for a new lightweight development environment or just a quick way to do some PHP 7 testing for WordPress plugins, Valet may fit nicely into your workflow. You can install it using <a href=\"http://brew.sh/\" target=\"_blank\">Homebrew</a>. View the <a href=\"https://laravel.com/docs/5.2/valet#installation\" target=\"_blank\">docs</a> for installation and site setup or follow along with Suhm&#8217;s <a href=\"http://blog.wppusher.com/a-minimalist-development-environment-for-wordpress-with-laravel-valet/\" target=\"_blank\">tutorial</a>.</p>\n<p>To see a quick demo of Valet in action, check out the two-minute introduction video created by Adam Wathan:</p>\n<div class=\"embed-wrap\"></div>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2016 18:44:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: WordPress 4.6 to Drop Open Sans in the Admin in Favor of System Fonts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54507\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://wptavern.com/wordpress-4-6-to-drop-open-sans-in-the-admin-in-favor-of-system-fonts\";s: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:2130:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/system-fonts-firefox-osx.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2016/05/system-fonts-firefox-osx.png?resize=1025%2C450\" alt=\"system-fonts-firefox-osx\" class=\"aligncenter size-full wp-image-54575\" /></a></p>\n<p>WordPress 4.6 will bid farewell to Open Sans in the admin in favor of using system fonts. Open Sans, which loads from Google Fonts as an external resource, has been in use in the admin since 2013.</p>\n<p>&#8220;At the time of introduction in 3.8, there were not good system fonts common to all platforms at the time,&#8221; WordPress lead developer <a href=\"http://helenhousandi.com/\" target=\"_blank\">Helen Hou-Sandí</a> said in her <a href=\"https://core.trac.wordpress.org/changeset/37361\" target=\"_blank\">commit</a> message. &#8220;In the years since, Windows, Android, OS X, iOS, Firefox OS, and various flavors of Linux have all gotten their own (good) system UI fonts.&#8221;</p>\n<p>Now that the admin doesn&#8217;t have to load fonts from Google, it should feel faster and will provide a better experience for developers who are working offline.</p>\n<p>Dropping Open Sans originated as part of the <a href=\"https://make.wordpress.org/core/features/font-natively/\" target=\"_blank\">Font Natively</a> feature project led by WordPress designer <a href=\"https://mattmiklic.com/\" target=\"_blank\">Matt Miklic</a>, Mark Uraine, and Helen Hou-Sandí. The project page provides screenshots for the WP admin with Open Sans in Firefox on OSX vs the admin with system fonts, but the team noted that they are in need of more screenshots from different environments.</p>\n<p>Anytime that WordPress can shed a third-party dependency while improving the experience in the admin is a win for everyone. The commit comes early in the release cycle in order to get more people testing for misalignments and any other issues. Feel free to report any bugs you experience with the change, as work is still ongoing on the <a href=\"https://core.trac.wordpress.org/ticket/36753\" target=\"_blank\">ticket</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2016 20:50:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Ninja Forms Update Patches Critical Security Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54556\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wptavern.com/ninja-forms-update-patches-critical-security-vulnerability\";s: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:4325:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/NinjaFormsFeaturedImage.png\"><img class=\"aligncenter size-full wp-image-40019\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/NinjaFormsFeaturedImage.png?resize=840%2C273\" alt=\"Ninja Forms Featured Image\" /></a><a href=\"https://wordpress.org/plugins/ninja-forms/\">Ninja Forms</a>, a popular plugin active on more than 500K websites, released an update 48 hours ago that addresses a critical security vulnerability. Wordfence <a href=\"https://www.wordfence.com/blog/2016/05/ninja-forms-shell-upload-vulnerability-high-risk/\">is reporting</a> that Ninja Forms versions 2.9.36 to 2.9.42 contain multiple security vulnerabilities.</p>\n<p>One of the vulnerabilities allows an attacker to upload and execute code remotely on WordPress sites. The only information needed to exploit the vulnerability is the URL of the target site that&#8217;s using a form powered by an affected version of Ninja Forms.</p>\n<p>Kevin Stover, CTO of Ninja Forms, explains to the Tavern how they discovered the vulnerabilities:</p>\n<blockquote><p>About two weeks ago, we were contacted by a security researcher, James Golovich, regarding a file upload issue within Ninja Forms. He demonstrated that it was possible to upload an arbitrary file using some test code that hadn’t been removed during our build process.</p>\n<p>We realised that the test code had accidentally been utilised in other areas of the plugin, and we immediately began working on a fix. While the issue was being patched, we reached out to the devs at the <a href=\"http://wordpress.org/\" target=\"_blank\" rel=\"noreferrer\">WordPress.org</a> repo and began the processes of preparing for auto updating users of the affected versions.</p>\n<p>Once the patch had been tested, we pushed version 2.9.43 and .1 versions of 2.9.36 &#8211; 2.9.42. Shortly after, <a href=\"http://wordpress.org/\" target=\"_blank\" rel=\"noreferrer\">WordPress.org</a> began pushing out automatic updates.</p></blockquote>\n<p>As to why there wasn&#8217;t a post published immediately on the official <a href=\"https://ninjaforms.com/blog/\">Ninja Forms blog</a> announcing the update, &#8220;We didn’t want to go public with the vulnerability until our users had time to update, both to the newest version and the .1 versions,&#8221; Stover said.</p>\n<p>&#8220;James Golovich&#8217;s responsible disclosure gave us time to fix the issue and for our users to update to safe versions before disclosing the vulnerability on his site,&#8221; he said. The company has since <a href=\"https://ninjaforms.com/important-security-update-always-hurt-ones-love/\">published a blog post </a>concerning the update.</p>\n<p>Working with the WordPress security team, automatic updates started rolling out on Tuesday, May 3rd. If automatic plugin updates are disabled, you&#8217;re highly encouraged to update manually to 2.9.45 as soon as possible. The Ninja Forms team is also working with a number of large webhosts to ensure as many sites as possible are updated.</p>\n<p>Wordfence is not detecting wide-spread exploitation but this could change in the next few days as details of the exploit emerge.</p>\n<p>When it comes to security vulnerabilities, the ability to upload and execute code remotely is about as severe as it gets. Golovich is credited with <a href=\"http://www.pritect.net/blog/ninja-forms-2-9-42-critical-security-vulnerabilities\">responsibly disclosing</a> the vulnerability to the Ninja Forms team. He also provides technical details of each vulnerability, most of which are in the Ninja Forms 3.0 code base.</p>\n<p>According to Golovich, the most vulnerable code is a proof of concept:</p>\n<blockquote><p>The following vulnerable code was, according to Kyle Johnson of the WP Ninjas team &#8216;not a live feature of Ninja Forms, but was more of a proof of concept for a future free feature.&#8217; Unfortunately, even proof of concept code that is accessible is still vulnerable to attack. This is the most critical vulnerability here because it potentially allows an attacker to execute arbitrary php code on a site.</p></blockquote>\n<p>Users should update as soon as possible as it&#8217;s only a matter of time before tools are created that can easily take advantage of the exploit.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2016 20:46:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WordPress.org Support Forums Adds Accessibility Section\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54472\";s:7:\"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:\"http://wptavern.com/wordpress-org-support-forums-adds-accessibility-section\";s: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:3619:\"<p>Earlier this year, the WordPress project made a huge move by <a href=\"http://wptavern.com/wordpress-adopts-accessibility-coding-standards-for-all-new-and-updated-code\">adopting accessibility coding standards</a> for new and updated code. If you&#8217;re struggling to meet <a href=\"https://www.w3.org/WAI/intro/wcag\">WCAG 2.0 guidelines</a> in your WordPress projects and need help, check out the new <a href=\"https://wordpress.org/support/forum/accessibility\">Accessibility section</a> in the WordPress.org support forums.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/WPAccessibilitySupport.png\"><img class=\"size-full wp-image-54551\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2016/05/WPAccessibilitySupport.png?resize=1025%2C487\" alt=\"WordPress Accessibility Support\" /></a>WordPress Accessibility Support\n<p>Amanda Rush, who helps WordPress developers make their themes and plugins accessible, says the forum is the result of a conversation with a support team member at WordCamp Atlanta.</p>\n<p>&#8220;I <span class=\"message_body\">mentioned that part of what makes the job difficult when it comes to making WordPress accessible is stopping during our work to answer occasional questions.<br />\n</span></p>\n<p>&#8220;Most of the time the answer is not a quick one, because in the case of screen reader users, you have to first find out how well they can use their tech, how familiar they are with WordPress itself, and if neither of those chances are high, you spend time giving them a crash course in either one or both, and then answer their question,&#8221; <span class=\"message_body\">Rush said. </span></p>\n<p>Most of the people on the <a href=\"https://make.wordpress.org/accessibility/\">WordPress Accessibility team</a> are volunteers with full-time jobs which limits their ability to provide one-on-one support. Many of the support queries come through email or direct messages to individuals on the team. The forum enables everyone to participate in the support process.</p>\n<p>&#8220;If people ask their questions publicly, I or others not necessarily on the Accessibility Team can answer, and the answers are then public,&#8221; Rush said.</p>\n<p>&#8220;We have a pattern library on GitHub, which we all contribute to when we have time. But there are all kinds of solutions being passed around on Twitter and spread across other people&#8217;s GitHub accounts. So if someone asks a question like that, we can either point to something in specific cases, which is most of them, there&#8217;s probably already a specific solution that someone&#8217;s built, and we can link to that,&#8221; Rush told the Tavern.</p>\n<p>The accessibility support forum also comes with a side benefit, &#8220;W<span class=\"message_body\">e don&#8217;t have to say no all the time when people ask for support, or what looks like all the time to some people. Everyone can help each other </span><span class=\"message_body\">out and Google has a public resource,&#8221; Rush said.<br />\n</span></p>\n<p>The support forum comes at a time where accessibility is an increasingly important part of web development. For example, the European Union <a href=\"http://europa.eu/rapid/press-release_IP-16-1654_en.htm\">recently agreed to new rules</a> that will make public sector websites and apps more accessible.</p>\n<p>If you have any questions related to accessibility, you can post them on the forum. If you have experience and knowledge in the accessibility field, consider answering questions as it&#8217;s a great way to contribute to the WordPress project.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2016 20:13:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"WPTavern: Font Awesome CDN Now in Beta, Loads Icons Asynchronously with Automatic Accessibility Best Practices\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=54509\";s:7:\"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:119:\"http://wptavern.com/font-awesome-cdn-now-in-beta-loads-icons-asynchronously-with-automatic-accessibility-best-practices\";s: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:2903:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/font-awesome.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/font-awesome.png?resize=1025%2C326\" alt=\"font-awesome\" class=\"aligncenter size-full wp-image-54532\" /></a></p>\n<p><a href=\"https://fortawesome.github.io/Font-Awesome/\" target=\"_blank\">Font Awesome</a>, the open source vector icon collection used by more than 300 plugins on WordPress.org and many free and commercial themes, <a href=\"https://articles.fortawesome.com/announcing-font-awesome-cdn-81773e0b301f#.egol888o7\" target=\"_blank\">announced the beta release of its new CDN</a>. Developers can now add a single line of code to bring the icons and CSS toolkit into their projects.</p>\n<p>The icon files and CSS are hosted by <a href=\"https://www.maxcdn.com/\" target=\"_blank\">MaxCDN</a>, which serves a cached version that loads quickly on websites that use Font Awesome. The CDN uses <a href=\"https://github.com/typekit/webfontloader\" target=\"_blank\">Web Font Loader</a>, which was co-developed by Google and Typekit, to load the icons asynchronously. This also gives developers <a href=\"https://github.com/typekit/webfontloader#events\" target=\"_blank\">CSS and JavaScript events</a> to hook into on loading.</p>\n<p><a href=\"http://wptavern.com/font-awesome-4-6-0-adds-new-accessibility-icons-category\" target=\"_blank\">FontAwesome 4.6 added a new accessibility icon category</a> and the new CDN helps to automate outputting the correct markup. If the icon you&#8217;re using has semantic meaning, including an accurate title attribute with the inline icon will trigger Font Awesome&#8217;s JS to do the rest.</p>\n<p>Font Awesome requires an email address from those want to use the CDN so it can issue a unique embed code for each. Developers also have the option to register a Font Awesome CDN account to keep track of sites and apps where they are using the icons, and manage multiple embed codes. Once logged in, you can enable or disable auto-accessibility, asynchronous icon loading, easy updates to newer Font Awesome versions, and CSS or JS embed.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/font-awesome-account.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/font-awesome-account.png?resize=1025%2C865\" alt=\"font-awesome-account\" class=\"aligncenter size-full wp-image-54543\" /></a></p>\n<p>One of the most convenient reasons to use the CDN is to simplify updates. WordPress plugin and theme developers do not have to bump versions or push any code to use the latest version. Font Awesome version changes can be triggered on an individual basis for each embed code in a developer&#8217;s account dashboard. Check out the instructions at <a href=\"https://cdn.fontawesome.com/\" target=\"_blank\">cdn.fontawesome.com</a> to get your project hooked up.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2016 18:09:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 24 Jun 2016 10:49:06 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"217777\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 24 Jun 2016 10:30:13 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20160624104343\";}','no'),(858,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1466808547','no'),(859,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1466765347','no'),(860,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1466808547','no'),(861,'_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:2:\"am\";s: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, 24 Jun 2016 10:39: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: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:\"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: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:35:\"2572@https://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: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: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: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:36:\"12073@https://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: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: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: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:35:\"2646@https://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: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: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/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:36:\"29832@https://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:\"The Wordfence WordPress security plugin provides free enterprise-class WordPress security, protecting your website from hacks and malware.\";s: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: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: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: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:36:\"23862@https://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: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: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: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:35:\"6743@https://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: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: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: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:35:\"9542@https://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: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: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: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:36:\"18101@https://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: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: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: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:35:\"2082@https://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:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG 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: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: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/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:34:\"363@https://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: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: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: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:33:\"15@https://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: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: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: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:36:\"29860@https://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: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: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: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:35:\"2316@https://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: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: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: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:35:\"5790@https://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: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:\"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: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:35:\"8321@https://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: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: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: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:35:\"2141@https://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: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: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:34:\"132@https://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: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:\"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: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:36:\"25254@https://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: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: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: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:34:\"753@https://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: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: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: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:35:\"1169@https://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: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: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: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:36:\"51888@https://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: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: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: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:36:\"26907@https://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: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: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: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:36:\"28395@https://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: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: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: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:36:\"50539@https://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: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: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: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:36:\"31973@https://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: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: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: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:36:\"38058@https://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: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: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: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:36:\"47509@https://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: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: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: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:36:\"21738@https://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: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: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: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:36:\"26607@https://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: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:36:\"49521@https://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:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 24 Jun 2016 10:49:07 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:7:\"expires\";s:29:\"Fri, 24 Jun 2016 11:14:33 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Fri, 24 Jun 2016 10:39:33 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20160624104343\";}','no'),(862,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1466808547','no'),(863,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1466765347','no'),(864,'_transient_timeout_plugin_slugs','1466851747','no'),(865,'_transient_plugin_slugs','a:5:{i:0;s:31:\"advance-portfolio-grid/main.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:34:\"easy-smooth-scroll-links/index.php\";i:3;s:27:\"fusion-core/fusion-core.php\";i:4;s:23:\"revslider/revslider.php\";}','no'),(870,'_transient_timeout_avada_dynamic_css_195','1682462249','no'),(872,'_transient_avada_dynamic_css_195','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(873,'_transient_timeout_avada_dynamic_css_193','1682490940','no'),(874,'_transient_avada_dynamic_css_193','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(878,'_transient_timeout_avada_dynamic_css_4','1682613362','no'),(879,'_transient_avada_dynamic_css_4','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:0px;padding-bottom:0px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(901,'_transient_timeout_avada_dynamic_css_194','1682400291','no'),(902,'_transient_avada_dynamic_css_194','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(907,'_transient_avada_dynamic_css_182','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(2226,'_transient_avada_dynamic_css_global','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:;padding-right:;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-!important;margin-right:-!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:#ffffff;}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(2520,'_transient_avada_dynamic_css_111','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(2521,'_transient_avada_dynamic_css_142','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(20825,'revslider-update-check','1608805516','yes'),(20826,'revslider_update_info','O:8:\"stdClass\":3:{s:7:\"checked\";i:1608805516;s:5:\"basic\";O:8:\"stdClass\":7:{s:4:\"slug\";s:9:\"revslider\";s:7:\"version\";s:5:\"6.3.4\";s:7:\"package\";s:66:\"http://updates.themepunch.tools/revslider/download.php?stable=true\";s:6:\"tested\";s:5:\"5.6.0\";s:5:\"icons\";a:1:{s:2:\"1x\";s:56:\"//updates.themepunch.tools/revslider/logo.png?rev=6.2.23\";}s:3:\"url\";s:80:\"http://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380\";s:11:\"new_version\";s:5:\"6.3.4\";}s:4:\"full\";O:8:\"stdClass\":19:{s:7:\"banners\";a:2:{s:3:\"low\";s:58:\"//updates.themepunch.tools/revslider/banner.png?rev=6.2.23\";s:4:\"high\";s:58:\"//updates.themepunch.tools/revslider/banner.png?rev=6.2.23\";}s:4:\"name\";s:17:\"Slider Revolution\";s:4:\"slug\";s:9:\"revslider\";s:6:\"stable\";s:5:\"4.2.0\";s:7:\"version\";s:5:\"6.3.4\";s:6:\"tested\";s:5:\"5.6.0\";s:14:\"upgrade_notice\";a:0:{}s:11:\"last_update\";s:10:\"2020-12-23\";s:12:\"last_updated\";s:10:\"2020-12-23\";s:8:\"requires\";s:3:\"3.6\";s:6:\"author\";s:51:\"<a href=\"https://www.themepunch.com\">ThemePunch</a>\";s:7:\"package\";s:66:\"http://updates.themepunch.tools/revslider/download.php?stable=true\";s:13:\"download_link\";s:66:\"http://updates.themepunch.tools/revslider/download.php?stable=true\";s:9:\"file_name\";s:13:\"revslider.zip\";s:15:\"active_installs\";i:7000100;s:8:\"homepage\";s:33:\"https://revolution.themepunch.com\";s:8:\"sections\";a:3:{s:11:\"description\";s:497:\"<h4>Slider Revolution WordPress Builder Plugin</h4>\n	<p>Slider Revolution 6 is a new way to build rich & dynamic content for your websites. With our powerful visual editor, you can create modern designs in no time, and with no coding experience required.</p><p>Create Sliders & Carousels, Hero Headers, Content Modules, Full Websites, Dynamic Solutions and Special FX with our amazing Add-Ons.</p>\n	<p>200+ templates are included in our online library. Cutting edge designs. Easily customized.</p>\";s:9:\"changelog\";s:151:\"<p>For Slider Revolution\'s changelog, please visit <a href=\"https://www.themepunch.com/slider-revolution/changelog/\" target=\"_blank\">this</a> site!</p>\";s:3:\"faq\";s:2178:\"<div class=\"tp-faq-content\"><div class=\"tp-faq-column tp-faq-recent\"><h4>Recent Solutions</h4><ul class=\"tp-faq-recent-content ready\"><li><a href=\"https://www.youtube.com/watch?v=sCcnw5bZqYY&amp;list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_&amp;index=2&amp;t=111s\" target=\"_blank\" title=\"Video Tutorials\">Video Tutorials</a></li><li><a href=\"https://www.themepunch.com/faq/responsive-content/\" target=\"_blank\" title=\"Responsive Content Setup\">Responsive Content Setup</a></li><li><a href=\"https://www.themepunch.com/faq/video-content-mobile/\" target=\"_blank\" title=\"Video Content &amp; Mobile Considerations\">Video Content &amp; Mobile Considerations</a></li><li><a href=\"https://www.themepunch.com/faq/how-to-change-the-timing-of-slides/\" target=\"_blank\" title=\"How to change the timing of Slides\">How to change the timing of Slides</a></li><li><a href=\"https://www.themepunch.com/faq/mouse-hovers-for-layer-content/\" target=\"_blank\" title=\"Mouse Hovers for Layer Content\"> Mouse Hovers for Layer Content</a></li></ul></div><div class=\"tp-faq-column tp-faq-popular\"><h4>Popular Solutions</h4><ul class=\"tp-faq-popular-content ready\"><li><a href=\"https://www.themepunch.com/faq/after-updating-make-sure-to-clear-all-caches/\" target=\"_blank\" title=\"After updating – Make sure to clear all caches\">After updating – Make sure to clear all caches</a></li><li><a href=\"https://www.themepunch.com/faq/purchase-code-registration-faqs/\" target=\"_blank\" title=\"Purchase Code Registration FAQ’s\">Purchase Code Registration FAQ’s</a></li><li><a href=\"https://www.themepunch.com/faq/ideal-image-size/\" target=\"_blank\" title=\"Ideal Image Size\">Ideal Image Size</a></li><li><a href=\"https://www.themepunch.com/faq/add-links-to-slides-and-layers/\" target=\"_blank\" title=\"How to Hyperlink Slides and Layers\">How to Hyperlink Slides and Layers</a></li><li><a href=\"https://www.themepunch.com/faq/where-to-find-the-purchase-code/\" target=\"_blank\" title=\"Where to find the Purchase Code\">Where to find the Purchase Code</a></li></ul></div><div style=\"clear: both\"></div><p><a class=\"button button-primary\" href=\"https://themepunch.com/support-center\"><strong>See All Faq\'s</strong></a></p></div>\";}s:3:\"url\";s:80:\"http://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380\";s:8:\"external\";i:1;}}','yes'),(21505,'_site_transient_timeout_browser_c065642163dbd30eb6b040fc31296a58','1613116523','yes'),(21506,'_site_transient_browser_c065642163dbd30eb6b040fc31296a58','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"36.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:1;s:8:\"insecure\";b:1;s:6:\"mobile\";b:0;}','yes'),(22193,'_transient_avada_dynamic_css_128','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(22202,'_transient_timeout_avada_dynamic_css_2','1682663997','no'),(22203,'_transient_avada_dynamic_css_2','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no');
INSERT INTO `wp_options` VALUES (22210,'_transient_avada_dynamic_css_1','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(22217,'_transient_avada_dynamic_css_129','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"https://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"https://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(22230,'_transient_avada_dynamic_css_158','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(22231,'_transient_avada_dynamic_css_118','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(22232,'_transient_avada_dynamic_css_109','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"https://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"https://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(22233,'_transient_avada_dynamic_css_119','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(22234,'_transient_avada_dynamic_css_161','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(22235,'_transient_avada_dynamic_css_120','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"https://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"https://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(22236,'_transient_avada_dynamic_css_110','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"https://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"https://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(22237,'_transient_avada_dynamic_css_164','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(22238,'_transient_avada_dynamic_css_160','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(22239,'_transient_avada_dynamic_css_136','.Avada_39{color:green;}.ua-mobile #wrapper{width:100% !important;overflow:hidden !important;}body,html,html body.custom-background{background-color:#ffffff;}#main,#slidingbar,.fusion-footer-copyright-area,.fusion-footer-widget-area,.fusion-page-title-bar,.fusion-secondary-header,.header-v4 #small-nav,.header-v5 #small-nav,.sticky-header .sticky-shadow,.tfs-slider .slide-content-container{padding-left:30px;padding-right:30px;}.width-100 .fusion-section-separator,.width-100 .nonhundred-percent-fullwidth{padding-left:30px;padding-right:30px;margin-left:-30px;margin-right:-30px;}.width-100 .fullwidth-box,.width-100 .fusion-section-separator{margin-left:-30px!important;margin-right:-30px!important;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder li a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item .fusion-open-submenu{padding-right:35px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item a{padding-left:30px;padding-right:30px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li a{padding-left:39px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li a{padding-left:48px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li a{padding-left:57px;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder .fusion-mobile-nav-item li li li li a{padding-left:66px;}.event-is-recurring:hover,.tooltip-shortcode,a:hover{color:#e68210;}#main .about-author .title a:hover,#main .post h2 a:hover,#slidingbar-area .fusion-accordian .panel-title a:hover,#slidingbar-area ul li a:hover,#wrapper .fusion-widget-area .current-menu-item > a,#wrapper .fusion-widget-area .current-menu-item > a:before,#wrapper .fusion-widget-area .current_page_item > a,#wrapper .fusion-widget-area .current_page_item > a:before,#wrapper .jtwt .jtwt_tweet a:hover,.content-box-percentage,.fusion-accordian .panel-title a:hover,.fusion-content-widget-area .widget .recentcomments:hover:before,.fusion-content-widget-area .widget li a:hover,.fusion-content-widget-area .widget li a:hover:before,.fusion-content-widget-area .widget_archive li a:hover:before,.fusion-content-widget-area .widget_categories li a:hover,.fusion-content-widget-area .widget_categories li a:hover:before,.fusion-content-widget-area .widget_links li a:hover:before,.fusion-content-widget-area .widget_nav_menu li a:hover:before,.fusion-content-widget-area .widget_pages li a:hover:before,.fusion-content-widget-area .widget_recent_entries li a:hover:before,.fusion-copyright-notice a:hover,.fusion-date-and-formats .fusion-format-box i,.fusion-filters .fusion-filter.fusion-active a,.fusion-footer-widget-area .fusion-accordian .panel-title a:hover,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a:hover,.fusion-footer-widget-area .widget li a:hover:before,.fusion-footer-widget-area a:hover,.fusion-footer-widget-area ul li a:hover,.fusion-login-box a:hover,.fusion-popover,.fusion-read-more:hover:after,.more a:hover:after,.pagination-next:hover:after,.pagination-prev:hover:before,.price > .amount,.price ins .amount,.project-content .project-info .project-info-box a:hover,.side-nav .arrow:hover:after,.side-nav li.current_page_ancestor > a,.side-nav ul > li.current_page_item > a,.single-navigation a[rel=next]:hover:after,.single-navigation a[rel=prev]:hover:before,.slidingbar-area .widget li a:hover:before,.slidingbar-area a:hover,.star-rating span:before,.star-rating:before,.tooltip-shortcode,h5.toggle:hover a,span.dropcap{color:#e68210;}.fusion-accordian .panel-title a:hover .fa-fusion-box{background-color:#e68210 !important;border-color:#e68210 !important;}.fusion-content-widget-area .fusion-image-wrapper .fusion-rollover .fusion-rollover-content a:hover{color:#333333;}.star-rating span:before,.star-rating:before{color:#e68210;}#slidingbar-area .tagcloud a:hover,.fusion-footer-widget-area .tagcloud a:hover,.tagcloud a:hover{color:#FFFFFF;text-shadow:none;-webkit-text-shadow:none;-moz-text-shadow:none;}#nav ul li > a:hover,#sticky-nav ul li > a:hover,#wrapper .fusion-tabs-widget .tab-holder .tabs li.active a,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:focus,#wrapper .fusion-tabs.classic .nav-tabs > li.active .tab-link:hover,#wrapper .fusion-tabs.vertical-tabs.classic .nav-tabs > li.active .tab-link,#wrapper .post-content blockquote,.fusion-filters .fusion-filter.fusion-active a,.fusion-hide-pagination-text .pagination-next:hover,.fusion-hide-pagination-text .pagination-prev:hover,.pagination .current,.pagination a.inactive:hover,.progress-bar-content,.reading-box,.tagcloud a:hover{border-color:#e68210;}#wrapper .side-nav li.current_page_item a{border-right-color:#e68210;border-left-color:#e68210;}#toTop:hover,#wrapper .search-table .search-button input[type=\"submit\"]:hover,.circle-yes ul li:before,.fusion-accordian .panel-title .active .fa-fusion-box,.fusion-date-and-formats .fusion-date-box,.pagination .current,.progress-bar-content,.table-2 table thead,.tagcloud a:hover,ul.arrow li:before,ul.circle-yes li:before{background-color:#e68210;}#fusion-gmap-container,#main,#sliders-container,#wrapper,.fusion-separator .icon-wrapper,body,html{background-color:#ffffff;}.fusion-footer-widget-area{background-color:#363839;border-color:#e9eaee;padding-top:0px;padding-bottom:0px;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li{border-color:#363839;}.fusion-footer-copyright-area{background-color:#282a2b;border-color:#4b4c4d;padding-top:18px;padding-bottom:16px;}.sep-boxed-pricing .panel-heading{background-color:#a0ce4e;border-color:#a0ce4e;}.full-boxed-pricing.fusion-pricing-table .standout .panel-heading h3,.fusion-pricing-table .panel-body .price .decimal-part,.fusion-pricing-table .panel-body .price .integer-part{color:#a0ce4e;}.fusion-image-wrapper .fusion-rollover{background-image:linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(230,130,16,0.8)), color-stop(1, rgba(230,130,16,0.8)));background-image:filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);background-image:-webkit-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-moz-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-ms-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);background-image:-o-linear-gradient(top, rgba(230,130,16,0.8) 0%, rgba(230,130,16,0.8) 100%);}.no-cssgradients .fusion-image-wrapper .fusion-rollover{background:#e68210;}.fusion-image-wrapper:hover .fusion-rollover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e68210, endColorstr=#e68210), progid: DXImageTransform.Microsoft.Alpha(Opacity=100);}#main .comment-submit,#reviews input#submit,.button-default,.button.default,.comment-form input[type=\"submit\"],.fusion-button-default,.fusion-portfolio-one .fusion-button,.ticket-selector-submit-btn[type=submit],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{background:#a0ce4e;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e, endColorstr=#a0ce4e);transition:all .2s;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;}.link-type-button-bar .fusion-read-more,.no-cssgradients #main .comment-submit,.no-cssgradients #reviews input#submit,.no-cssgradients .button-default,.no-cssgradients .button.default,.no-cssgradients .comment-form input[type=\"submit\"],.no-cssgradients .fusion-button-default,.no-cssgradients .fusion-portfolio-one .fusion-button,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"],.no-cssgradients .wpcf7-form input[type=\"submit\"],.no-cssgradients .wpcf7-submit{background:#a0ce4e;}#main .comment-submit:hover,#reviews input#submit:hover,.button-default:hover,.button.default:hover,.comment-form input[type=\"submit\"]:hover,.fusion-button-default:hover,.fusion-portfolio-one .fusion-button:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{background:#96c346;color:#ffffff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#96c346, endColorstr=#96c346);}.no-cssgradients #main .comment-submit:hover,.no-cssgradients #reviews input#submit:hover,.no-cssgradients .button-default:hover,.no-cssgradients .comment-form input[type=\"submit\"]:hover,.no-cssgradients .fusion-button-default:hover,.no-cssgradients .fusion-portfolio-one .fusion-button:hover,.no-cssgradients .ticket-selector-submit-btn[type=\"submit\"]:hover,.no-cssgradients .wpcf7-form input[type=\"submit\"]:hover,.no-cssgradients .wpcf7-submit:hover,.no-cssgradinets .button.default:hover{background:#96c346 !important;}.link-type-button-bar .fusion-read-more,.link-type-button-bar .fusion-read-more:after,.link-type-button-bar .fusion-read-more:before{color:#ffffff;}.link-type-button-bar .fusion-read-more:hover,.link-type-button-bar .fusion-read-more:hover:after,.link-type-button-bar .fusion-read-more:hover:before,.link-type-button-bar.link-area-box:hover .fusion-read-more,.link-type-button-bar.link-area-box:hover .fusion-read-more:after,.link-type-button-bar.link-area-box:hover .fusion-read-more:before{color:#ffffff !important;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link{background-color:#333333;width:36px;height:36px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price *,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-rollover .fusion-rollover-content .fusion-rollover-title{color:#333333;}.fusion-page-title-bar{border-color:#ffffff;background-color:#ffffff;height:150px;}.fusion-footer-copyright-area > .fusion-row,.fusion-footer-widget-area > .fusion-row{padding-left:0px;padding-right:0px;}.fontawesome-icon.circle-yes{background-color:#333333;}.content-box-shortcode-timeline,.fontawesome-icon.circle-yes{border-color:#333333;}.fontawesome-icon,.fontawesome-icon.circle-yes,.post-content .error-menu li:after,.post-content .error-menu li:before{color:#ffffff;}.fusion-title .title-sep,.fusion-title.sep-underline,.product .product-border{border-color:#e0dede;}.checkout .payment_methods .payment_box,.post-content blockquote,.review blockquote q{background-color:#f6f6f6;}.fusion-testimonials .author:after{border-top-color:#f6f6f6;}.post-content blockquote,.review blockquote q{color:#747474;}#nav ul li ul li a,#sticky-nav ul li ul li a,#wrapper #nav ul li ul li > a,#wrapper #sticky-nav ul li ul li > a,.avada-container h3,.comment-form input[type=\"submit\"],.ei-title h3,.fusion-blog-shortcode .fusion-timeline-date,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .price,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content a,.fusion-load-more-button,.fusion-page-title-bar h3,.meta .fusion-date,.more,.post-content blockquote,.project-content .project-info h4,.review blockquote div strong,.review blockquote q,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],body{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}#slidingbar-area h3,.avada-container h3,.comment-form input[type=\"submit\"],.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-load-more-button,.project-content .project-info h4,.review blockquote div strong,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-weight:bold;}.meta .fusion-date,.post-content blockquote,.review blockquote q{font-style:italic;}.side-nav li a{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-countdown-heading,.fusion-countdown-subheading,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}.project-content .project-info h4{font-family:\'Roboto\', Arial, Helvetica, sans-serif;}#main .post h2,#main .reading-box h2,#main h2,#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.ei-title h2,.fusion-accordian .panel-heading a,.fusion-accordian .panel-title,.fusion-author .fusion-author-title,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-flip-box .flip-box-heading-back,.fusion-header-tagline,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-title a,.fusion-modal .modal-title,.fusion-page-title-bar h1,.fusion-person .person-desc .person-author .person-author-wrapper,.fusion-pricing-table .pricing-row,.fusion-pricing-table .title-row,.fusion-tabs .nav-tabs  li .fusion-tab-heading,.fusion-title h3,.main-flex .slide-content h2,.main-flex .slide-content h3,.popover .popover-title,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6,.project-content h3,.share-box h4,table th{font-weight:700;}#slidingbar-area .widget-title,#slidingbar-area h3,.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-content-widget-area .jtwt .jtwt_tweet,.fusion-widget-area .slide-excerpt h2,.jtwt .jtwt_tweet,body{font-size:15px;line-height:23px;}#slidingbar-area ul,.fusion-footer-widget-area ul,.fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,.fusion-tabs-widget .tab-holder .news-list li .post-holder a,.project-content .project-info h4{font-size:15px;line-height:23px;}.counter-box-content,.fusion-alert,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-progressbar .sr-only,.post-content blockquote,.review blockquote q{font-size:15px;}#side-header .fusion-contact-info,#side-header .header-social .top-menu,.fusion-accordian .panel-body,.fusion-widget-area .slide-excerpt h2,.post-content blockquote,.project-content .project-info h4,.review blockquote q,body{line-height:20px;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs li,.fusion-page-title-bar .fusion-breadcrumbs li a{font-size:10px;}.sidebar .widget h4{font-size:13px;}#slidingbar-area .widget-title,#slidingbar-area h3{font-size:13px;line-height:13px;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3{font-size:13px;line-height:13px;}.fusion-copyright-notice{font-size:12px;}#main .fusion-row,#slidingbar-area .fusion-row,.fusion-footer-copyright-area .fusion-row,.fusion-footer-widget-area .fusion-row,.fusion-page-title-row,.tfs-slider .slide-content-container .slide-content{max-width:1100px;}body,html{overflow-x:hidden;}.post-content h1{font-size:40px;line-height:48px;}#main .fusion-portfolio h2,#wrapper  #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{font-size:40px;line-height:72px;}#main .fusion-portfolio h2,#wrapper #main .post h2,#wrapper #main .post-content .fusion-title h2,#wrapper #main .post-content .title h2,#wrapper .fusion-title h2,#wrapper .post-content h2,#wrapper .title h2,h2.entry-title{line-height:48px;}#wrapper #main .fusion-portfolio-content > h2.entry-title,#wrapper #main .fusion-post-content > .blog-shortcode-post-title,#wrapper #main .fusion-post-content > h2.entry-title,#wrapper #main .post > h2.entry-title,#wrapper .fusion-events-shortcode .fusion-events-meta h2{font-size:18px;line-height:27px;}#wrapper #main #comments .fusion-title h3,#wrapper #main #respond .fusion-title h3,#wrapper #main .about-author .fusion-title h3,#wrapper #main .related-posts .fusion-title h3,#wrapper #main .related.products .fusion-title h3{font-size:18px;line-height:27px;}.fusion-person .person-author-wrapper .person-name,.post-content h3,.project-content h3{font-size:20px;line-height:24px;}.fusion-modal .modal-title{font-size:20px;line-height:36px;}.fusion-carousel-title,.fusion-person .person-author-wrapper .person-title,.fusion-portfolio-post .fusion-portfolio-content h4,.fusion-rollover .fusion-rollover-content .fusion-rollover-title,.post-content h4{font-size:13px;line-height:20px;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-flip-box .flip-box-heading-back,.person-author-wrapper,.popover .popover-title{font-size:13px;}.fusion-accordian .panel-title,.fusion-sharing-box h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-widget-area .fusion-accordian .panel-title{font-size:13px;line-height:30px;}.post-content h5{font-size:12px;line-height:18px;}.post-content h6{font-size:11px;line-height:17px;}.ei-title h2{font-size:42px;line-height:63px;color:#333333;}.ei-title h3{font-size:20px;line-height:30px;color:#747474;}#wrapper .fusion-events-shortcode .fusion-events-meta h4,.fusion-carousel-meta,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories,.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-rollover-categories a,.fusion-recent-posts .columns .column .meta,.fusion-single-line-meta{font-size:12px;line-height:18px;}.fusion-carousel-meta,.fusion-meta,.fusion-meta-info,.fusion-recent-posts .columns .column .meta,.post .single-line-meta{font-size:12px;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a,.product-buttons a{font-size:12px;line-height:18px;}.page-links,.pagination,.pagination .pagination-next,.pagination .pagination-prev{font-size:12px;}#wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta,#wrapper .meta,.fusion-blog-timeline-layout .fusion-timeline-date,.fusion-content-widget-area .jtwt,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-rollover .price .amount,.post .post-content,.post-content blockquote,.project-content .project-info h4,.quantity .minus,.quantity .plus,.quantity .qty,.review blockquote div,.search input,.title-row,body{color:#747474;}.fusion-post-content h1,.post-content h1,.title h1{color:#333333;}#main .post h2,.cart-empty,.fusion-post-content h2,.fusion-title h2,.post-content h2,.search-page-search-form h2,.title h2{color:#333333;}.fusion-post-content h3,.fusion-title h3,.person-author-wrapper span,.post-content h3,.product-title,.project-content h3,.title h3{color:#333333;}#wrapper .fusion-tabs-widget .tab-holder .tabs li a,.fusion-accordian .panel-title a,.fusion-carousel-title,.fusion-content-widget-area .widget h4,.fusion-post-content h4,.fusion-tabs .nav-tabs > li .fusion-tab-heading,.fusion-title h4,.post-content h4,.project-content .project-info h4,.share-box h4,.title h4{color:#333333;}.fusion-post-content h5,.fusion-title h5,.post-content h5,.title h5{color:#333333;}.fusion-post-content h6,.fusion-title h6,.post-content h6,.title h6{color:#333333;}.fusion-page-title-bar h1,.fusion-page-title-bar h3{color:#333333;}.sep-boxed-pricing .panel-heading h3{color:#333333;}.full-boxed-pricing.fusion-pricing-table .panel-heading h3{color:#333333;}#main .post h2 a,.about-author .title a,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget li a:before,.fusion-content-widget-area .widget_categories li,.fusion-load-more-button,.fusion-rollover a,.project-content .project-info .project-info-box a,.shop_attributes tr th,.single-navigation a[rel=\"next\"]:after,.single-navigation a[rel=\"prev\"]:before,body a,body a:after,body a:before{color:#333333;}body #toTop:before{color:#fff;}.fusion-page-title-bar .fusion-breadcrumbs,.fusion-page-title-bar .fusion-breadcrumbs a{color:#333333;}#slidingbar-area .fusion-title > *,#slidingbar-area .widget-title,#slidingbar-area h3{color:#DDDDDD;}#slidingbar-area,#slidingbar-area .fusion-column,#slidingbar-area .jtwt,#slidingbar-area .jtwt .jtwt_tweet{color:#8C8989;} #slidingbar-area .jtwt .jtwt_tweet a,#slidingbar-area .fusion-accordian .panel-title a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .tabs li a,.slidingbar-area .widget li a:before,.slidingbar-area a{color:#BFBFBF;}.sidebar .widget .heading h4,.sidebar .widget h4{color:#333333;}.sidebar .widget .heading .widget-title,.sidebar .widget .widget-title{background-color:transparent;}.fusion-footer-widget-area .widget-title,.fusion-footer-widget-area h3,.fusion-footer-widget-column .product-title{color:#DDDDDD;}.fusion-copyright-notice,.fusion-footer-widget-area,.fusion-footer-widget-area .jtwt,.fusion-footer-widget-area .jtwt .jtwt_tweet,.fusion-footer-widget-area article.col{color:#8C8989;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .tabs li a,.fusion-copyright-notice a,.fusion-footer-widget-area .fusion-accordian .panel-title a,.fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li .post-holder a,.fusion-footer-widget-area .jtwt .jtwt_tweet a,.fusion-footer-widget-area .widget li a:before,.fusion-footer-widget-area a{color:#BFBFBF;}#customer_login .col-1,#customer_login .col-2,#customer_login h2,#customer_login_box,#reviews li .comment-text,#small-nav,#wrapper .fusion-tabs-widget .tab-holder,#wrapper .side-nav li a,#wrapper .side-nav li.current_page_item li a,.avada-skin-rev,.chzn-container-single .chzn-single,.chzn-container-single .chzn-single div,.chzn-drop,.commentlist .the-comment,.es-carousel-wrapper.fusion-carousel-small .es-carousel ul li img,.fusion-accordian .fusion-panel,.fusion-author .fusion-author-social,.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .post-wrapper,.fusion-content-widget-area .widget .recentcomments,.fusion-content-widget-area .widget li a,.fusion-content-widget-area .widget_archive li,.fusion-content-widget-area .widget_categories li,.fusion-content-widget-area .widget_links li,.fusion-content-widget-area .widget_meta li,.fusion-content-widget-area .widget_nav_menu li,.fusion-content-widget-area .widget_pages li,.fusion-content-widget-area .widget_recent_entries li,.fusion-counters-box .fusion-counter-box .counter-box-border,.fusion-filters,.fusion-hide-pagination-text .pagination-next,.fusion-hide-pagination-text .pagination-prev,.fusion-layout-timeline .post,.fusion-layout-timeline .post .flexslider,.fusion-layout-timeline .post .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-portfolio-one .fusion-portfolio-boxed .fusion-portfolio-post-wrapper,.fusion-tabs.vertical-tabs.clean .nav-tabs li .tab-link,.fusion-timeline-arrow,.fusion-timeline-date,.input-radio,.ls-avada,.page-links a,.pagination a.inactive,.panel.entry-content,.post .fusion-meta-info,.price_slider_wrapper,.progress-bar,.project-content .project-info .project-info-box,.quantity,.quantity .minus,.quantity .qty,.search-page-search-form,.sep-dashed,.sep-dotted,.sep-double,.sep-single,.side-nav,.side-nav li a,.single-navigation,.table,.table > tbody > tr > td,.table > tbody > tr > th,.table > tfoot > tr > td,.table > tfoot > tr > th,.table > thead > tr > td,.table > thead > tr > th,.table-1 table,.table-1 table th,.table-1 tr td,.table-2 table thead,.table-2 tr td,.tabs-vertical .tabs-container .tab_content,.tabs-vertical .tabset,.tagcloud a,.tkt-slctr-tbl-wrap-dv table,.tkt-slctr-tbl-wrap-dv tr td,h5.toggle.active + .toggle-content,tr td{border-color:#e0dede;}.price_slider_wrapper .ui-widget-content{background-color:#e0dede;}.fusion-load-more-button{background-color:#ebeaea;}.fusion-load-more-button:hover{background-color:rgba(235,234,234,0.8);}.quantity .minus,.quantity .plus{background-color:#fbfaf9;}.quantity .minus:hover,.quantity .plus:hover{background-color:#ffffff;}.sb-toggle-wrapper .sb-toggle:after{color:#ffffff;}#slidingbar-area .product_list_widget li,#slidingbar-area .widget_categories li a,#slidingbar-area .widget_recent_entries ul li,#slidingbar-area li.recentcomments,#slidingbar-area ul li a{border-bottom-color:#282A2B;}#slidingbar-area .fusion-accordian .fusion-panel,#slidingbar-area .tagcloud a,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder,#wrapper #slidingbar-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#282A2B;}#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder,#wrapper .fusion-footer-widget-area .fusion-tabs-widget .tab-holder .news-list li,.fusion-footer-widget-area .fusion-accordian .fusion-panel,.fusion-footer-widget-area .product_list_widget li,.fusion-footer-widget-area .tagcloud a,.fusion-footer-widget-area .widget_categories li a,.fusion-footer-widget-area .widget_recent_entries li,.fusion-footer-widget-area li.recentcomments,.fusion-footer-widget-area ul li a{border-color:#505152;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,input.s,input[type=\"text\"],select,textarea{background-color:#ffffff;}#wrapper .select-arrow,.avada-select-parent .select-arrow{background-color:#ffffff;}#comment-input .placeholder,#comment-input input,#comment-textarea .placeholder,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice2,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input.s .placeholder,input[type=\"text\"],select,textarea{color:#aaa9a9;}#comment-input input::-webkit-input-placeholder,#comment-textarea textarea::-webkit-input-placeholder,.comment-form-comment textarea::-webkit-input-placeholder,.input-text::-webkit-input-placeholder,.post-password-form .password::-webkit-input-placeholder,.searchform .s::-webkit-input-placeholder,input#s::-webkit-input-placeholder{color:#aaa9a9;}#comment-input input:-moz-placeholder,#comment-textarea textarea:-moz-placeholder,.comment-form-comment textarea:-moz-placeholder,.input-text:-moz-placeholder,.post-password-form .password:-moz-placeholder,.searchform .s:-moz-placeholder,input#s:-moz-placeholder{color:#aaa9a9;}#comment-input input::-moz-placeholder,#comment-textarea textarea::-moz-placeholder,.comment-form-comment textarea::-moz-placeholder,.input-text::-moz-placeholder,.post-password-form .password::-moz-placeholder,.searchform .s::-moz-placeholder,input#s::-moz-placeholder{color:#aaa9a9;}#comment-input input:-ms-input-placeholder,#comment-textarea textarea:-ms-input-placeholder,.comment-form-comment textarea:-ms-input-placeholder,.input-text:-ms-input-placeholder,.post-password-form .password::-ms-input-placeholder,.searchform .s:-ms-input-placeholder,input#s:-ms-input-placeholder{color:#aaa9a9;}#comment-input input,#comment-textarea textarea,#wrapper .search-table .search-field input,.avada-select .select2-container .select2-choice,.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.avada-select-parent .select-arrow,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.comment-form-comment textarea,.gravity-select-parent .select-arrow,.input-text,.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.select-arrow,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,.wpcf7-form textarea,.wpcf7-select-parent .select-arrow,input.s,input[type=\"text\"],select,textarea{border-color:#d2d2d2;}#comment-input input,.avada-select .select2-container .select2-choice,.avada-select-parent select,.chzn-container .chzn-drop,.chzn-container-single .chzn-single,.input-text:not(textarea),.main-nav-search-form input,.post-password-form .password,.search-page-search-form input,.searchform .search-table .search-field input,.wpcf7-captchar,.wpcf7-form .wpcf7-date,.wpcf7-form .wpcf7-number,.wpcf7-form .wpcf7-quiz,.wpcf7-form .wpcf7-select,.wpcf7-form .wpcf7-text,input.s,input[type=\"text\"],select{height:29px;padding-top:0;padding-bottom:0;}.avada-select .select2-container .select2-choice .select2-arrow,.avada-select .select2-container .select2-choice2 .select2-arrow,.searchform .search-table .search-button input[type=\"submit\"]{height:29px;width:29px;line-height:29px;}.select2-container .select2-choice > .select2-chosen{line-height:29px;}.select-arrow,.select2-arrow{color:#d2d2d2;}.fusion-page-title-bar h1{font-size:18px;line-height:normal;}.fusion-page-title-bar h3{font-size:14px;line-height:26px;}body.has-sidebar #content{width:calc(100% - 23% - 100px);}body.has-sidebar #main .sidebar{width:23%;}body.has-sidebar.double-sidebars #content{width:calc(100% - 21% - 21% - 100px);margin-left:calc(21% + 50px);}body.has-sidebar.double-sidebars #main #sidebar{width:21%;margin-left:calc(50px - (100% - 21%));}body.has-sidebar.double-sidebars #main #sidebar-2{width:21%;margin-left:50px;}#main .sidebar{background-color:transparent;padding:0;}.fusion-accordian .panel-title a .fa-fusion-box{background-color:#333333;}.progress-bar-content{background-color:#a0ce4e;border-color:#a0ce4e;}.content-box-percentage{color:#a0ce4e;}.progress-bar{background-color:#f6f6f6;border-color:#f6f6f6;}#wrapper .fusion-date-and-formats .fusion-format-box, .tribe-mini-calendar-event .list-date .list-dayname{background-color:#eef0f2;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev{background-color:rgba(0,0,0,0.6);width:30px;height:30px;margin-top:-15px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:hover,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:hover{background-color:rgba(0,0,0,0.7);}.fusion-flexslider .flex-direction-nav .flex-next,.fusion-flexslider .flex-direction-nav .flex-prev{background-color:rgba(0,0,0,0.6);}.fusion-flexslider .flex-direction-nav .flex-next:hover,.fusion-flexslider .flex-direction-nav .flex-prev:hover{background-color:rgba(0,0,0,0.7);}.content-boxes .col{background-color:transparent;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tabs-container{background-color:#ffffff;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li{border-right:1px solid #ffffff;}.fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li a{background:#ebeaea;border-bottom:0;color:#747474;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li a:hover{background:#ffffff;border-bottom:0;}body .fusion-content-widget-area .fusion-tabs-widget .tab-hold .tabs li.active a,body .fusion-content-widget-area .fusion-tabs-widget .tab-holder .tabs li.active a{background:#ffffff;border-bottom:0;border-top-color:#e68210;}#wrapper .fusion-content-widget-area .fusion-tabs-widget .tab-holder,.fusion-content-widget-area .fusion-tabs-widget .tab-holder .news-list li{border-color:#ebeaea;}.fusion-single-sharing-box{background-color:#f6f6f6;}.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .post,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.products li.product{background-color:transparent;}.fusion-blog-layout-grid .post .flexslider,.fusion-blog-layout-grid .post .fusion-content-sep,.fusion-blog-layout-grid .post .fusion-post-wrapper,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-layout-timeline .fusion-timeline-line,.fusion-blog-layout-timeline .post,.fusion-blog-layout-timeline .post .flexslider,.fusion-blog-layout-timeline .post .fusion-content-sep,.fusion-blog-timeline-layout .post,.fusion-blog-timeline-layout .post .flexslider,.fusion-blog-timeline-layout .post .fusion-content-sep,.fusion-events-shortcode .fusion-events-thumbnail,.fusion-events-shortcode .fusion-layout-column,.fusion-portfolio.fusion-portfolio-boxed .fusion-content-sep,.fusion-portfolio.fusion-portfolio-boxed .fusion-portfolio-content-wrapper,.product .product-buttons,.product-buttons,.product-buttons-container,.product-details-container,.products li{border-color:#ebeaea;}.fusion-blog-layout-timeline .fusion-timeline-circle,.fusion-blog-layout-timeline .fusion-timeline-date,.fusion-blog-timeline-layout .fusion-timeline-circle,.fusion-blog-timeline-layout .fusion-timeline-date{background-color:#ebeaea;}.fusion-blog-timeline-layout .fusion-timeline-arrow:before,.fusion-blog-timeline-layout .fusion-timeline-icon,.fusion-timeline-arrow:before,.fusion-timeline-icon{color:#ebeaea;}div.indicator-hint{background:#ebeaea;border-color:#ebeaea;}#posts-container.fusion-blog-layout-grid{margin:-20px -20px 0 -20px;}#posts-container.fusion-blog-layout-grid .fusion-post-grid{padding:20px;}.quicktags-toolbar input{background:linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-webkit-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-moz-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-ms-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background:-o-linear-gradient(to top, #ffffff, #ffffff ) #3E3E3E;background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ffffff));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff), progid: DXImageTransform.Microsoft.Alpha(Opacity=0);border:1px solid #d2d2d2;color:#aaa9a9;}.quicktags-toolbar input:hover{background:#ffffff;}.ei-slider{width:100%;height:400px;}#comment-submit,#reviews input#submit,.button.default,.fusion-button.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-color:#ffffff;}#comment-submit:hover,#reviews input#submit:hover,.button.default:hover,.fusion-button.fusion-button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]:hover,.wpcf7-form input[type=\"submit\"]:hover,.wpcf7-submit:hover{border-color:#ffffff;}.button.default,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{padding:13px 29px;line-height:17px;font-size:14px;}.button.default.button-3d.button-small,.fusion-button.button-small.button-3d,.fusion-button.fusion-button-3d.fusion-button-small,.ticket-selector-submit-btn[type=\"submit\"]{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-small:active,.fusion-button.button-small.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-small:active,.ticket-selector-submit-btn[type=\"submit\"]:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 4px 4px 2px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium,.fusion-button.button-medium.button-3d,.fusion-button.fusion-button-3d.fusion-button-medium{box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 3px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-medium:active,.fusion-button.button-medium.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-medium:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 5px 5px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large,.fusion-button.button-large.button-3d,.fusion-button.fusion-button-3d.fusion-button-large{box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 4px 0px #54770F, 1px 5px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-large:active,.fusion-button.button-large.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-large:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 1px 0px #54770F, 1px 6px 6px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge,.fusion-button.button-xlarge.button-3d,.fusion-button.fusion-button-3d.fusion-button-xlarge{box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 5px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}.button.default.button-3d.button-xlarge:active,.fusion-button.button-xlarge.button-3d:active,.fusion-button.fusion-button-3d.fusion-button-xlarge:active{box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-webkit-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0px 1px 0px #ffffff, 0px 2px 0px #54770F, 1px 7px 7px 3px rgba(0, 0, 0, 0.3);}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button,.fusion-button-default,.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-width:0px;border-style:solid;}.button.default:hover,.fusion-button.button-default:hover,.ticket-selector-submit-btn[type=\"submit\"]{border-width:0px;border-style:solid;}.fusion-menu-item-button .menu-text{border-color:#fff;}.fusion-menu-item-button:hover .menu-text{border-color:#fff;}#comment-submit,#reviews input#submit,.button-default,.button.default,.fusion-button-default,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"],.wpcf7-submit{border-radius:2px;-webkit-border-radius:2px;}.reading-box{background-color:#f6f6f6;}.isotope .isotope-item{transition-property:top, left, opacity;-webkit-transition-property:top, left, opacity;-moz-transition-property:top, left, opacity;-ms-transition-property:top, left, opacity;-o-transition-property:top, left, opacity;}.comment-form input[type=\"submit\"],.fusion-button,.fusion-load-more-button,.ticket-selector-submit-btn[type=\"submit\"],.wpcf7-form input[type=\"submit\"]{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;}.fusion-image-wrapper .fusion-rollover .fusion-rollover-gallery:before,.fusion-image-wrapper .fusion-rollover .fusion-rollover-link:before{font-size:15px;margin-left:-7px;line-height:36px;color:#ffffff;}.fusion-title-size-one,h1{margin-top:0.67em;margin-bottom:0.67em;}.fusion-title-size-two,h2{margin-top:0em;margin-bottom:1.1em;}.fusion-title-size-three,h3{margin-top:1em;margin-bottom:1em;}.fusion-title-size-four,h4{margin-top:1.33em;margin-bottom:1.33em;}.fusion-title-size-five,h5{margin-top:1.67em;margin-bottom:1.67em;}.fusion-title-size-six,h6{margin-top:2.33em;margin-bottom:2.33em;}.fusion-logo{margin-top:18px;margin-right:0px;margin-bottom:1px;margin-left:0px;}.fusion-header-wrapper .fusion-row{padding-left:0px;padding-right:0px;max-width:1100px;}.fusion-header-v2 .fusion-header,.fusion-header-v3 .fusion-header,.fusion-header-v4 .fusion-header,.fusion-header-v5 .fusion-header{border-bottom-color:#e5e5e5;}#side-header .fusion-secondary-menu-search-inner{border-top-color:#e5e5e5;}.fusion-header .fusion-row{padding-top:0px;padding-bottom:0px;}.fusion-secondary-header{background-color:#e68210;font-size:12px;color:#ffffff;border-bottom-color:#e5e5e5;}.fusion-secondary-header a,.fusion-secondary-header a:hover{color:#ffffff;}.fusion-header-v2 .fusion-secondary-header{border-top-color:#e68210;}.fusion-mobile-menu-design-modern .fusion-secondary-header .fusion-alignleft{border-bottom-color:#e5e5e5;}.fusion-header-tagline{font-size:16px;color:#747474;}.fusion-mobile-menu-sep,.fusion-secondary-main-menu{border-bottom-color:#e5e5e5;}#side-header{width:0px;padding-top:0px;padding-bottom:0px;}#side-header .side-header-background{width:0px;}#side-header .side-header-border{width:0px;border-color:#e5e5e5;}#side-header .side-header-content{padding-left:0px;padding-right:0px;}#side-header .fusion-main-menu > ul > li > a{padding-left:0px;padding-right:0px;border-top-color:#e5e5e5;border-bottom-color:#e5e5e5;text-align:center;height:auto;min-height:83px;}.side-header-left .fusion-main-menu > ul > li > a > .fusion-caret{right:0px;}.side-header-right .fusion-main-menu > ul > li > a > .fusion-caret{left:0px;}#side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,#side-header .fusion-main-menu > ul > li.current-menu-item > a{color:#e68210;border-right-color:#e68210;border-left-color:#e68210;}body.side-header-left #side-header .fusion-main-menu > ul > li > ul{left:-1px;}body.side-header-left #side-header .fusion-main-menu .fusion-custom-menu-item-contents{top:0;left:-1px;}#side-header .fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents{border-top-width:1px;border-top-style:solid;}#side-header .fusion-secondary-menu > ul > li > a,#side-header .side-header-content-1,#side-header .side-header-content-2{color:#747474;font-size:12px;}.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-left #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-right-width:3px;}.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-ancestor > a,.side-header-right #side-header .fusion-main-menu > ul > li.current-menu-item > a{border-left-width:3px;}.side-header-right #side-header .fusion-main-menu .fusion-menu-cart-items,.side-header-right #side-header .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu,.side-header-right #side-header .fusion-main-menu ul .fusion-dropdown-menu .sub-menu li ul,.side-header-right #side-header .fusion-main-menu ul .fusion-menu-login-box .sub-menu{left:-180px;}.side-header-right #side-header .fusion-main-menu-search .fusion-custom-menu-item-contents{left:-250px;}.fusion-main-menu > ul > li{padding-right:45px;}.fusion-main-menu > ul > li > a{border-top:3px solid transparent;height:83px;line-height:83px;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:14px;}.fusion-megamenu-icon img{max-height:14px;}.fusion-main-menu .fusion-widget-cart-counter > a:before,.fusion-main-menu > ul > li > a{color:#333333;}.fusion-main-menu .fusion-widget-cart-counter > a:before:hover,.fusion-main-menu > ul > li > a:hover{color:#e68210;}.fusion-main-menu > ul > li > a:hover{border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a:hover{border-color:transparent;}.fusion-widget-cart-number{background-color:#e68210;color:#333333;}.fusion-widget-cart-counter a:hover:before{color:#e68210;}.fusion-main-menu .current-menu-ancestor > a,.fusion-main-menu .current-menu-item > a,.fusion-main-menu .current-menu-parent > a,.fusion-main-menu .current_page_item > a{color:#e68210;border-color:#e68210;}.fusion-main-menu > ul > .fusion-menu-item-button > a{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:after{color:#333333;height:14px;width:14px;}.fusion-main-menu .fusion-menu-cart-checkout-link a:hover,.fusion-main-menu .fusion-menu-cart-checkout-link a:hover:before,.fusion-main-menu .fusion-menu-cart-link a:hover,.fusion-main-menu .fusion-menu-cart-link a:hover:before{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon:hover{border-color:transparent;}.fusion-main-menu .fusion-main-menu-icon:hover:after{color:#e68210;}.fusion-main-menu .fusion-main-menu-icon-active:after,.fusion-main-menu .fusion-main-menu-search-open .fusion-main-menu-icon:after{color:#e68210;}.fusion-main-menu .sub-menu{background-color:#f2efef;border-top:3px solid #e68210;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-main-menu .sub-menu, .fusion-main-menu .fusion-menu-cart-items, .fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{width:180px;}.fusion-main-menu .sub-menu ul{left:180px;top:-3px;}.fusion-main-menu .sub-menu li a{border-bottom:1px solid #dcdadb;padding-top:7px;padding-bottom:7px;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-main-menu .sub-menu li a:hover{background-color:#f8f8f8;}.fusion-main-menu .sub-menu .current-menu-item > a,.fusion-main-menu .sub-menu .current-menu-parent > a,.fusion-main-menu .sub-menu .current_page_item > a{background-color:#f8f8f8;}.fusion-main-menu .fusion-custom-menu-item-contents{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;}.fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents,.fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents{background-color:#f2efef;border-color:#dcdadb;}.fusion-secondary-menu > ul > li{border-color:#ffffff;}.fusion-secondary-menu > ul > li > a{height:44px;line-height:44px;}.fusion-secondary-menu .sub-menu, .fusion-secondary-menu .fusion-custom-menu-item-contents{width:180px;}.fusion-secondary-menu .fusion-secondary-menu-icon{min-width:180px;}.fusion-secondary-menu .sub-menu{background-color:#ffffff;border-color:#e5e5e5;}.fusion-secondary-menu .sub-menu a{border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .sub-menu a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu > ul > li > .sub-menu .sub-menu{left:180px;}.fusion-secondary-menu .fusion-custom-menu-item-contents{background-color:#ffffff;border-color:#e5e5e5;color:#747474;}.fusion-secondary-menu .fusion-secondary-menu-icon,.fusion-secondary-menu .fusion-secondary-menu-icon:hover{color:#333333;}.fusion-secondary-menu .fusion-menu-cart-items a{color:#747474;}.fusion-secondary-menu .fusion-menu-cart-item a{border-color:#e5e5e5;}.fusion-secondary-menu .fusion-menu-cart-item img{border-color:#e0dede;}.fusion-secondary-menu .fusion-menu-cart-item a:hover{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon{background-color:#fafafa;color:#333333;}.fusion-secondary-menu-icon:after,.fusion-secondary-menu-icon:before{color:#333333;}.fusion-contact-info{line-height:44px;}.fusion-megamenu-holder{border-color:#e68210;}.fusion-megamenu{background-color:#f2efef;box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-webkit-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);-moz-box-shadow:1px 1px 30px rgba(0, 0, 0, 0.06);}.fusion-megamenu-wrapper .fusion-megamenu-submenu{border-color:#dcdadb;}.fusion-megamenu-wrapper .fusion-megamenu-submenu .sub-menu a{padding-top:5px;padding-bottom:5px;}.fusion-megamenu-wrapper .fusion-megamenu-submenu > a:hover{background-color:#f8f8f8;color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13;}.fusion-megamenu-title{font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:700;font-size:18px;color:#333333;}.fusion-megamenu-title a{color:#333333;}.fusion-megamenu-bullet{border-left-color:#333333;}.fusion-megamenu-widgets-container{color:#333333;font-family:\'Roboto\', Arial, Helvetica, sans-serif;font-weight:400;font-size:13px;}.fusion-header-wrapper.fusion-is-sticky .fusion-header,.fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);}.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-header,.no-rgba .fusion-header-wrapper.fusion-is-sticky .fusion-secondary-main-menu{background-color:rgba(255,255,255,0.97);opacity:0.97;filter:progid: DXImageTransform.Microsoft.Alpha(Opacity=97);}.fusion-is-sticky .fusion-main-menu > ul > li:last-child{padding-right:0;}.fusion-mobile-selector{background-color:#f9f9f9;border-color:#dadada;font-size:12px;height:35px;line-height:35px;color:#333333;}.fusion-selector-down{height:33px;line-height:33px;border-color:#dadada;}.fusion-selector-down:before{color:#dadada;}.fusion-mobile-menu-design-modern .fusion-mobile-nav-holder > ul,.fusion-mobile-nav-holder > ul{border-color:#dadada;}.fusion-mobile-nav-item .fusion-open-submenu{color:#333333;}.fusion-mobile-nav-item a{color:#333333;font-size:12px;background-color:#f9f9f9;border-color:#dadada;height:35px;line-height:35px;}.fusion-mobile-nav-item a:hover{background-color:#f6f6f6;}.fusion-mobile-nav-item a:before{color:#333333;}.fusion-mobile-current-nav-item > a{background-color:#f6f6f6;}.fusion-mobile-menu-icons{margin-top:0px;}.fusion-mobile-menu-icons a{color:#dadada;}.fusion-mobile-menu-icons a:before{color:#dadada;}.fusion-open-submenu{font-size:12px;height:35px;line-height:35px;}.fusion-open-submenu:hover{color:#e68210;}#wrapper .post-content .content-box-heading{font-size:18px;line-height:48px;}.fusion-social-links-header .fusion-social-networks a{font-size:16px;}.fusion-social-links-header .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-social-links-footer .fusion-social-networks a{font-size:16px;}.fusion-social-links-footer .fusion-social-networks.boxed-icons a{padding:8px;}.fusion-sharing-box .fusion-social-networks a{font-size:16px;}.fusion-sharing-box .fusion-social-networks.boxed-icons a{padding:8px;}.post-content .fusion-social-links .fusion-social-networks a,.widget .fusion-social-links .fusion-social-networks a{font-size:16px;}.post-content .fusion-social-links .fusion-social-networks.boxed-icons a,.widget .fusion-social-links .fusion-social-networks.boxed-icons a{padding:8px;}.ua-mobile #slidingbar-area{width:1100px;left:0;}.avada-select-parent .select-arrow,.select-arrow{height:33px;line-height:33px;}#wrapper{width:100%;max-width:none;}#side-header,.fusion-header,.layout-boxed-mode .side-header-wrapper,.side-header-background{background-color:rgba(255,255,255,1);}.fusion-secondary-main-menu{background-color:rgba(255,255,255,1);}.rev_slider_wrapper{position:relative;}.rev_slider_wrapper .shadow-left{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-top.png\");background-repeat:no-repeat;background-position:top center;height:42px;width:100%;top:-1px;z-index:99;}.rev_slider_wrapper .shadow-right{position:absolute;pointer-events:none;background-image:url(\"http://vantageprinters.com/vital/wp-content/themes/Avada/assets/images/shadow-bottom.png\");background-repeat:no-repeat;background-position:bottom center;height:32px;width:100%;bottom:0;z-index:99;}.avada-skin-rev{border-top:1px solid #d2d3d4;border-bottom:1px solid #d2d3d4;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;}.tparrows{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{opacity:0.8 !important;position:absolute;top:50% !important;margin-top:-31px !important;width:63px !important;height:63px !important;background:none;background-color:rgba(0, 0, 0, 0.5);color:#fff;border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before{content:\"\\e61e\";-webkit-font-smoothing:antialiased;margin-left:-2px;}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{content:\"\\e620\";-webkit-font-smoothing:antialiased;margin-left:-1px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:before{position:absolute;padding:0;width:100%;line-height:63px;text-align:center;font-size:25px;font-family:\'icomoon\';}.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{left:auto;right:0;background-position:29px 19px;margin-left:0;z-index:100;}.no-rgba .rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows,.no-rgba .rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows{background-color:#ccc;}.rev_slider_wrapper:hover .rev_slider .tp-leftarrow.tparrows,.rev_slider_wrapper:hover .rev_slider .tp-rightarrow.tparrows{display:block;opacity:0.8 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows:hover,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows:hover{opacity:1 !important;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows{background-position:19px 19px;left:0;margin-left:0;z-index:100;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hidearrows,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hidearrows{opacity:0;}.rev_slider_wrapper .rev_slider .tparrows.hades .tp-arr-allwrapper{width:63px;height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.hebe:before,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.hebe:before{position:relative;width:auto;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus{min-width:63px;min-height:63px;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.zeus .tp-title-wrap,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.zeus .tp-title-wrap{border-radius:0;-webkit-border-radius:0;}.rev_slider_wrapper .rev_slider .tp-leftarrow.tparrows.metis,.rev_slider_wrapper .rev_slider .tp-rightarrow.tparrows.metis{padding:0;}.tp-bullets .bullet.last{clear:none;}#main{padding-top:55px;padding-bottom:40px;}.side-header-left .fusion-footer-parallax,body.side-header-left #wrapper{margin-left:280px;}.side-header-right .fusion-footer-parallax,body.side-header-right #wrapper{margin-right:280px;}body.side-header-left #side-header #nav .login-box,body.side-header-left #side-header #nav .main-nav-search-form,body.side-header-left #side-header #nav > ul > li > ul{left:279px;}body.side-header-left #slidingbar .avada-row,body.side-header-right #slidingbar .avada-row{max-width:none;}.layout-wide-mode .fusion-header-wrapper .fusion-row{max-width:100%;}body{min-width:1100px;overflow-x:scroll;}html{overflow-x:scroll;}.fusion-flexslider .flex-direction-nav a,.fusion-flexslider.flexslider-attachments .flex-direction-nav a,.fusion-flexslider.flexslider-posts .flex-direction-nav a,.fusion-flexslider.flexslider-posts-with-excerpt .flex-direction-nav a,.fusion-slider-sc .flex-direction-nav a{width:30px;height:30px;line-height:30px;font-size:14px;}.fusion-carousel .fusion-carousel-nav .fusion-nav-next:before,.fusion-carousel .fusion-carousel-nav .fusion-nav-prev:before{line-height:30px;font-size:14px;}.bbp-pagination .bbp-pagination-links a.inactive,.bbp-topic-pagination .page-numbers,.page-links a,.pagination a.inactive,.woocommerce-pagination .page-numbers{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .current,.page-links > .page-number,.pagination .current,.woocommerce-pagination .current{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-prev,.pagination .pagination-prev,.woocommerce-pagination .prev{padding:2px 6px;}.bbp-pagination .bbp-pagination-links .pagination-next,.bbp-pagination-links span.dots,.pagination .pagination-next,.woocommerce-pagination .next{padding:2px 6px;}@media screen and (max-width: 800px){.fullwidth-box{background-attachment:scroll !important;}.no-mobile-totop .to-top-container{display:none;}.no-mobile-slidingbar #slidingbar-area{display:none;}}@media screen and (max-width: 782px){.admin-bar p.demo_store,body.admin-bar #wrapper #slidingbar-area{top:46px;}body.body_blank.admin-bar{top:45px;}html #wpadminbar{z-index:99999 !important;position:fixed !important;}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.gravity-select-parent .select-arrow{height:24px;line-height:24px;}.fusion-imageframe, .imageframe-align-center{font-size:0px;line-height:normal;}}@media only screen and (min-width: 801px) and (max-width: 1014px){#wrapper{width:auto;}}@media only screen and (min-device-width: 801px) and (max-device-width: 1014px){#wrapper{width:auto;}}@-webkit-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-webkit-transform:scale(1.5);opacity:0;}}@-moz-keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{-moz-transform:scale(1.5);opacity:0;}}@keyframes avadaSonarEffect{0%{opacity:0.3;}40%{opacity:0.5;}100%{transform:scale(1.5);opacity:0;-webkit-transform:scale(1.5);-moz-transform:scale(1.5);-ms-transform:scale(1.5);-o-transform:scale(1.5);}}.fusion-secondary-header{display:none;}\r\n.fusion-menu{font-style:italic;}\r\n.grey{color:#363636}\r\n.font_20{font-size:20px;font-style:italic;}\r\n#ov{position:relative;}\r\n.over{\r\ndisplay:block;\r\nposition:absolute;\r\ncontent=\'\';\r\ntop:50%;\r\nleft:50%;\r\nbackground:#000;\r\n}\r\n.form-left {\r\n    width: 50%;\r\n    float: left;\r\n}\r\n.form-right {\r\n    width: 49%;\r\n    float: right;\r\n    text-align: right;\r\n}\r\n.form-contact p { margin-bottom: 2px; }\r\n.form-contact input,\r\n.form-contact textarea { \r\n    background-color: rgba(255, 255, 255, 1);\r\n    font: normal normal normal 14px/1.4em didot-w01-italic,serif;\r\n    -webkit-appearance: none;\r\n    -moz-appearance: none;\r\n    border: 1px solid rgba(235, 186, 77, 0.5) !important;\r\n    color: #EBBA4D !important;\r\n    margin: 0 0 5px;\r\n    padding: 5px;\r\n }\r\ninput.wpcf7-form-control.wpcf7-submit {\r\n    background: transparent !important;\r\n    border: none !important;\r\n    color: #333 !important;\r\n    font-style: italic;\r\n    text-align: right;\r\n    float: right;\r\n    font-size: 30px;\r\n    font-weight: 100;\r\n    text-transform: capitalize;\r\n    font-family: QuickPenas;\r\n}\r\n.fusion-animated {\r\n    visibility: visible !important;\r\n}\r\n.fusion-portfolio-content-wrapper {\r\n    opacity: 1 !important;\r\n}\r\n.fusion-carousel .fusion-carousel-item img {\r\n\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n#work .fusion-fullwidth-4 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\na.nav-active {\r\n    color:#ccc;\r\n}\r\n.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a {\r\nborder: none !important;\r\ncolor: #333 !important;\r\n}\r\n.fusion-page-title-bar h1 {\r\n    font-size: 48px;\r\n    line-height: normal;\r\n    text-transform: uppercase;\r\n}\r\n#work .fusion-recent-works {\r\n    overflow: hidden;\r\n    margin-bottom: 0px !important;\r\n}\r\n.fusion-main-menu > ul > li > a:hover {\r\n    color: #e68210 !important;\r\n    border-color: #e68210 !important;\r\n\r\n}\r\n.video-btn {\r\n    background: #e68210 !important;\r\n    border-radius: 50% !important;\r\n    padding: 30px;\r\n}\r\n.back-to-btn {\r\n    background-color: transparent;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  rgba(235, 186, 77, 1);\r\n    cursor: pointer !important;\r\npadding: 5px 10px;\r\n}\r\n.back-to-btn:hover {\r\n    background-color: rgba(235, 186, 77, 1) ;\r\n    border: solid rgba(235, 186, 77, 1) 1px;\r\ncolor:  #fff;\r\n    cursor: pointer !important;\r\n}','no'),(23887,'_site_transient_timeout_browser_05f578eb3fa9f908f5d74ef7bf6207a5','1629038019','yes'),(23888,'_site_transient_browser_05f578eb3fa9f908f5d74ef7bf6207a5','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"79.0.3945.130\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','yes'),(23889,'_transient_timeout_feed_3ac19636a08ac871617784ce82d597b8','1628476420','no');
INSERT INTO `wp_options` VALUES (23890,'_transient_feed_3ac19636a08ac871617784ce82d597b8','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:46:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Avada ThemeFusion | Avada Website Builder – Avada Website Builder For WordPress &amp; 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:24:\"https://theme-fusion.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:27:\"For WordPress & 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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Aug 2021 08:51:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=5.7.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:\"item\";a:9:{i:0;a:6:{s:4:\"data\";s:85:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Avada Bakery: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://theme-fusion.com/avada-bakery-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://theme-fusion.com/avada-bakery-deconstructing-a-prebuilt-website/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Aug 2021 17:58:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";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:5:\"Avada\";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:\"Beginners Guide\";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:10:\"Web Design\";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:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"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://theme-fusion.com/?p=869390\";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:609:\"<p>Say hello to Avada Bakery. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Bakery can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-bakery-deconstructing-a-prebuilt-website/\">Avada Bakery: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s: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:137371:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-1 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-0 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-1\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/bakery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Bakery</a>. This <a href=\"https://bit.ly/3wXhAbh\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Bakery can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/bakery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Bakery</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-winery-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Winery</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/3wXhAbh\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-0 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-1 .fusion-button-text, .fusion-button.button-1 i {color:#fff;}.fusion-button.button-1 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-1:hover .fusion-button-text, .fusion-button.button-1:hover i,.fusion-button.button-1:focus .fusion-button-text, .fusion-button.button-1:focus i,.fusion-button.button-1:active .fusion-button-text, .fusion-button.button-1:active{color:#fff;}.fusion-button.button-1:hover .fusion-button-icon-divider, .fusion-button.button-1:hover .fusion-button-icon-divider, .fusion-button.button-1:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-1:hover, .fusion-button.button-1:focus, .fusion-button.button-1:active{border-color:#fff;}.fusion-button.button-1 {border-color:#fff;border-radius:2px;}.fusion-button.button-1{background: #f86635;}.fusion-button.button-1:hover,.button-1:focus,.fusion-button.button-1:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-1 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/bakery/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-0{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-0 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-0{width:100% !important;order : 0;}.fusion-builder-nested-column-0 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-0{width:100% !important;order : 0;}.fusion-builder-nested-column-0 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-1 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-2 .fusion-button-text, .fusion-button.button-2 i {color:#fff;}.fusion-button.button-2 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-2:hover .fusion-button-text, .fusion-button.button-2:hover i,.fusion-button.button-2:focus .fusion-button-text, .fusion-button.button-2:focus i,.fusion-button.button-2:active .fusion-button-text, .fusion-button.button-2:active{color:#fff;}.fusion-button.button-2:hover .fusion-button-icon-divider, .fusion-button.button-2:hover .fusion-button-icon-divider, .fusion-button.button-2:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-2:hover, .fusion-button.button-2:focus, .fusion-button.button-2:active{border-color:#fff;}.fusion-button.button-2 {border-color:#fff;border-radius:2px;}.fusion-button.button-2{background: #f86635;}.fusion-button.button-2:hover,.button-2:focus,.fusion-button.button-2:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-2 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3wXhAbh\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-1{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-1 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-1{width:100% !important;order : 0;}.fusion-builder-nested-column-1 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-1{width:100% !important;order : 0;}.fusion-builder-nested-column-1 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-1{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-1 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-1\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-2{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-2 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-2\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-3{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-3 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-3\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-4{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-4 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-4\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/3wXhAbh\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-1 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-5\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-2\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-5{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-5 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-6\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-2 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-7\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/3wXhAbh\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-6{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-6 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-8\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-3 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"Critical CSS\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1180\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-867029\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x128.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x255.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x383.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x510.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x765.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-9\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-7{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-7 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-10\"><p>Even with all of the performance options provided, Avada plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://bit.ly/3wXhAbh\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-3\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-8{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-8 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#55328b;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#55328b\">#55328b</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#f9f1f2;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f9f1f2\">#f9f1f2</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#f0edf5;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f0edf5\">#f0edf5</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#55328b;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#55328b\">#55328b</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#f9f1f2;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f9f1f2\">#f9f1f2</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#f0edf5;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f0edf5\">#f0edf5</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#55328b;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#55328b\">#55328b</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#f9f1f2;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f9f1f2\">#f9f1f2</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#f0edf5;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f0edf5\">#f0edf5</div></div></div></div><div class=\"fusion-text fusion-text-11\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/bakery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Bakery</a> prebuilt website is a spontaneous grouping, as seen above. If you would like to change the Avada Bakery color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-9{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-9 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-12\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/3wXhAbh\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a><a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\"> </a>website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/bakery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Bakery</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-2 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-10{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-10 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-11{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-11 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: \'Source Serif Pro\'; font-weight: 700;\" data-fusion-font=\"true\" data-fusion-google-font=\"Source Serif Pro\" data-fusion-google-variant=\"700\">Source Serif Pro</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-12{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-12 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3,H4 Font Family: <span style=\"font-family: \'Source Serif Pro\'; font-weight: bold;\" data-fusion-font=\"true\" data-fusion-google-font=\"Source Serif Pro\" data-fusion-google-variant=\"700\">Source Serif Pro</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-13{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-13 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: \'Source Serif Pro\'; font-weight: 700;\" data-fusion-font=\"true\" data-fusion-google-font=\"Source Serif Pro\" data-fusion-google-variant=\"700\">Source Serif Pro</span><br />\n</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-14{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-14 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H6 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: \'Work Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Work Sans\" data-fusion-google-variant=\"400\">Work Sans</span></span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-2{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-2 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-2{width:100% !important;order : 0;}.fusion-builder-nested-column-2 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-2{width:100% !important;order : 0;}.fusion-builder-nested-column-2 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-3 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-15{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-15 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-16{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-16 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">			Font Family: <span data-fusion-font=\"true\" data-fusion-google-font=\"Work Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Work Sans\'; font-weight: 400;\">Work Sans</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-3{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-3 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-3{width:100% !important;order : 0;}.fusion-builder-nested-column-3 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-3{width:100% !important;order : 0;}.fusion-builder-nested-column-3 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-13\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-17{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-17 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-14\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-4\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">The <a href=\"https://bit.ly/3wXhAbh\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-18{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-18 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-15\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/bakery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Bakery</a> prebuilt website as an example: This prebuilt website was built without using any of the Avada bundled plugins.</p>\n<p>When an Avada prebuilt website is built without using bundled plugins, you can still install and activate any of them, should it be needed for your website. Any Avada prebuilt website can be modified to fit your project needs.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-19{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-19 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-16\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-5\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-envelope-open-text fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-register-for-avada-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Register for Avada support</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comments fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/support/submit-a-ticket/\" target=\"_blank\" rel=\"noopener noreferrer\">Need to submit a support ticket?</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cart-arrow-down fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/extending-and-renewing-envato-item-support/\" target=\"_blank\" rel=\"noopener noreferrer\">How to extend or renew support</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-question fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/avada-grandfathered-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Are you eligible for Grandfathered support?</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-columns fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-use-the-avada-support-desk/\" target=\"_blank\" rel=\"noopener noreferrer\">How to use the Avada support Dashboard</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-alt fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Documentation</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-video fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://www.youtube.com/c/ThemeFusionVideos/videos\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Video Tutorials</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-20{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-20 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-17\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type. </p>\n<p><a href=\"https://bit.ly/3wXhAbh\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website. </p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-6\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">They are created to save you time when building a new website.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A prebuilt website can be imported with a few clicks.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is mobile and SEO friendly.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">You can white-label any prebuilt website for client work.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Prebuilt websites are included with your <a href=\"https://bit.ly/3wXhAbh\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-21{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-21 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-18\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">83</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-4 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-0{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-0 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-0{width:100% !important;order : 0;}.fusion-builder-column-0 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-0{width:100% !important;order : 0;}.fusion-builder-column-0 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-1{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-2 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-1 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-22{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-22 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-19\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/bakery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Bakery</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-7\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/bakery/\" target=\"_blank\" rel=\"noopener noreferrer\">Home Page &#8211; Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/bakery/classic/\" target=\"_blank\" rel=\"noopener noreferrer\">Home &gt; Classic Shop &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/bakery/extended/\" target=\"_blank\" rel=\"noopener noreferrer\">Home &gt; Extended Width &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/bakery/shop/\" target=\"_blank\" rel=\"noopener noreferrer\">Shop &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/bakery/about/\" target=\"_blank\" rel=\"noopener noreferrer\">About &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/bakery/gallery/\" target=\"_blank\" rel=\"noopener noreferrer\">Gallery &#8211; page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/bakery/locations/\" target=\"_blank\" rel=\"noopener noreferrer\">Locations &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/bakery/journal/\" target=\"_blank\" rel=\"noopener noreferrer\">Journal &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/bakery/contact/\" target=\"_blank\" rel=\"noopener noreferrer\">Contact &#8211; Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-1{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-1 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-1{width:100% !important;order : 0;}.fusion-builder-column-1 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-1{width:100% !important;order : 0;}.fusion-builder-column-1 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-2{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-3 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-2 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-23{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-23 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-20\"><p>Before we look at the specific Layouts on the Avada Bakery prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-5 hover-type-none\"><img width=\"1817\" height=\"3407\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x375.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x750.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x1125.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x1500.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-1200x2250.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1817w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-24{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-24 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-21\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-25{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-25 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-22\"><p>The <a href=\"https://avada.theme-fusion.com/bakery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Bakery</a><a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\"> </a>prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-6 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Live-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[14088f49c61496836cf]\" data-title=\"Avada Bakery Live Editing\" title=\"Avada Bakery Live Editing\"><img width=\"1920\" height=\"935\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Live-Editing.jpg\" class=\"img-responsive wp-image-870072\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Live-Editing-200x97.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Live-Editing-400x195.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Live-Editing-600x292.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Live-Editing-800x390.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Live-Editing-1200x584.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Live-Editing.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-23\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-7 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[9468677b98b4f1d0f96]\" data-title=\"Avada Bakery Backend Editing\" title=\"Avada Bakery Backend Editing\"><img width=\"1897\" height=\"859\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Backend-Editing.jpg\" class=\"img-responsive wp-image-870073\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Backend-Editing-200x91.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Backend-Editing-400x181.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Backend-Editing-600x272.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Backend-Editing-800x362.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Backend-Editing-1200x543.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Backend-Editing.jpg 1897w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-26{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-26 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-24\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-8\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-2{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-2 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-2{width:100% !important;order : 0;}.fusion-builder-column-2 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-2{width:100% !important;order : 0;}.fusion-builder-column-2 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-3{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-4 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-3 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-27{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-27 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-25\"><p>If you type the base-level domain name of any particular website into the browser, you will, by default, arrive on the website&#8217;s homepage. The homepage serves as a vital landing page for your visitors by capturing their attention and letting them know what the website is all about. There is the conjectured &#8220;5 Second Rule&#8221; for Web Usability and how it translates the user reaction when landing on the site for the first time into either a positive or negative experience.</p>\n<p>For well over a decade, the main focus for web designers was to showcase style over function for the most part. As time has passed, <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">above the fold</a> content delivery and the impact on <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a> has shifted the focus over to mobile vs. desktop speed and <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>.</p>\n<p>Each of the Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">Prebuilt Websites</a> are meticulously designed with the ideal balance between style and function, and we use the Avada <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> to provide improved results.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-28{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-28 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-26\"><p>For the <a href=\"https://avada.theme-fusion.com/bakery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Bakery</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Global-Header.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-8 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[734545e1cc4a6d20194]\" data-title=\"Avada Bakery Header\" title=\"Avada Bakery Header\"><img width=\"1899\" height=\"161\" alt=\"Avada Bakery Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Header.jpg\" class=\"img-responsive wp-image-870074\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Header-200x17.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Header-400x34.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Header-600x51.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Header-800x68.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Header-1200x102.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Header.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-29{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-29 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-27\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-9\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-3{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-3 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-3{width:100% !important;order : 0;}.fusion-builder-column-3 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-3{width:100% !important;order : 0;}.fusion-builder-column-3 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-4{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-5 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-4 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-30{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-30 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-9 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[bbf16dcd4653eb8aac5]\" data-title=\"Avada Bakery Hero\" title=\"Avada Bakery Hero\"><img width=\"1900\" height=\"692\" alt=\"Avada Bakery Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Hero.jpg\" class=\"img-responsive wp-image-870075\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Hero-200x73.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Hero-400x146.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Hero-600x219.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Hero-800x291.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Hero-1200x437.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Hero.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-28\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. The inner content was structured using one 1/3 (33.33% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, with two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>. </p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-31{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-31 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Our Products</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-10 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Featured-Products.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2da28b975314cc49ba9]\" data-title=\"Avada Bakery Intro Featured Products\" title=\"Avada Bakery Intro Featured Products\"><img width=\"1899\" height=\"797\" alt=\"Avada Bakery Our Products\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Featured-Products.jpg\" class=\"img-responsive wp-image-870077\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Featured-Products-200x84.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Featured-Products-400x168.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Featured-Products-600x252.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Featured-Products-800x336.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Featured-Products-1200x504.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Featured-Products.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-29\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This section was built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/3 (33.33% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a> and one 2/3 (66.67% width) Column with the Woo Featured Products Slider.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-32{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-32 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Baking Special Moments</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-11 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Quick-Options.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[29e8209a430b3999441]\" data-title=\"Avada Bakery Intro Quick Options\" title=\"Avada Bakery Intro Quick Options\"><img width=\"1898\" height=\"899\" alt=\"Avada Bakery Baking Special Moments\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Quick-Options.jpg\" class=\"img-responsive wp-image-870080\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Quick-Options-200x95.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Quick-Options-400x189.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Quick-Options-600x284.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Quick-Options-800x379.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Quick-Options-1200x568.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Intro-Quick-Options.jpg 1898w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-30\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, holding two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a> and two 1/2 (50% width) Columns, each with a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. Simply put, Nested Columns are Columns within Columns. Each of these Nested Columns contains a 1/1 (100% width) Column, each holding two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, two Title Elements, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-33{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-33 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Featured Products</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-12 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Featured-Products.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[9b3fa1c0873c1190b08]\" data-title=\"Avada Bakery Featured Products\" title=\"Avada Bakery Featured Products\"><img width=\"1897\" height=\"710\" alt=\"Avada Bakery Featured Products\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Featured-Products.jpg\" class=\"img-responsive wp-image-870083\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Featured-Products-200x75.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Featured-Products-400x150.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Featured-Products-600x225.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Featured-Products-800x299.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Featured-Products-1200x449.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Featured-Products.jpg 1897w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-31\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image and one 1/4 (25% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, and a 3/4 (75% width) Column, with the Woo Product Carousel Element.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-34{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-34 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Baking Process</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-13 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-The-Baking-Process.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[47335f7a244086737cb]\" data-title=\"Avada Bakery The Baking Process\" title=\"Avada Bakery The Baking Process\"><img width=\"1899\" height=\"2664\" alt=\"Avada Bakery Baking Process\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-The-Baking-Process.jpg\" class=\"img-responsive wp-image-870085\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-The-Baking-Process-200x281.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-The-Baking-Process-400x561.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-The-Baking-Process-600x842.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-The-Baking-Process-800x1122.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-The-Baking-Process-1200x1683.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-The-Baking-Process.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-32\"><p>For this example, this section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>and two 1/2 (50% width) Columns, each with a Background Image, collectively containing six <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Elements</a>, three <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-35{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-35 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Locations</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-14 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Locations.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[9c513c0230d34499528]\" data-title=\"Avada Bakery Locations\" title=\"Avada Bakery Locations\"><img width=\"1895\" height=\"1062\" alt=\"Avada Bakery Locations\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Locations.jpg\" class=\"img-responsive wp-image-870088\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Locations-200x112.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Locations-400x224.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Locations-600x336.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Locations-800x448.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Locations-1200x673.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Locations.jpg 1895w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-33\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, using two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, and two 1/2 (50% width) Columns, each with an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. These Nested Columns are structured with one 1/1 (100% width) Column and three 1/3 (33.33% width) Columns, each containing three <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/modal-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Modal Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-36{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-36 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Social Networks</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-15 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Social-Networks.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[a3acc3098527f464ef5]\" data-title=\"Avada Bakery Social Networks\" title=\"Avada Bakery Social Networks\"><img width=\"1894\" height=\"1360\" alt=\"Avada Bakery Social Networks\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Social-Networks.jpg\" class=\"img-responsive wp-image-870090\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Social-Networks-200x144.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Social-Networks-400x287.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Social-Networks-600x431.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Social-Networks-800x574.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Social-Networks-1200x862.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Social-Networks.jpg 1894w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-34\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, this section is made up of a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a>, six 1/4 (20% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, each containing a Background Image, and one 1/2 (50% width) Column containing two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-37{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-37 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Featured &#8211; Visual CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-16 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-CTA-Feat.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[e4b4981f10073a64b5e]\" data-title=\"Avada Bakery CTA Feat\" title=\"Avada Bakery CTA Feat\"><img width=\"1892\" height=\"527\" alt=\"Avada Bakery Feature Visual CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-CTA-Feat.jpg\" class=\"img-responsive wp-image-870091\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-CTA-Feat-200x56.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-CTA-Feat-400x111.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-CTA-Feat-600x167.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-CTA-Feat-800x223.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-CTA-Feat-1200x334.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-CTA-Feat.jpg 1892w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-35\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, the CTA section is made up of a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image and one 3/5 (60% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>using two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-4{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-4 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-4{width:100% !important;order : 0;}.fusion-builder-column-4 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-4{width:100% !important;order : 0;}.fusion-builder-column-4 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-5{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-6 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-5 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-38{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-38 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-36\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-10\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#55328b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-37\"><p>For the <a href=\"https://avada.theme-fusion.com/bakery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Bakery</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-39{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-39 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-17 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[48e6a0231c684ed1c36]\" data-title=\"Avada Bakery Footer\" title=\"Avada Bakery Footer\"><img width=\"1894\" height=\"378\" alt=\"Avada Bakery Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Footer.jpg\" class=\"img-responsive wp-image-870093\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Footer-200x40.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Footer-400x80.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Footer-600x120.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Footer-800x160.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Footer-1200x239.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Footer.jpg 1894w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-38\"><p>The Footer content is structured with a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> and several <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, collectively containing an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/menu-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Menu Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/social-links-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Social Links Element</a>, with the use of <a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website information. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Bakery-Global-Footer.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-40{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-40 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-39\"><p>There are <span class=\"fusion-cs-live-demos\">83</span> <a href=\"https://bit.ly/3wXhAbh\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/3wXhAbh\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-3 .fusion-button-text, .fusion-button.button-3 i {color:#fff;}.fusion-button.button-3 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-3:hover .fusion-button-text, .fusion-button.button-3:hover i,.fusion-button.button-3:focus .fusion-button-text, .fusion-button.button-3:focus i,.fusion-button.button-3:active .fusion-button-text, .fusion-button.button-3:active{color:#fff;}.fusion-button.button-3:hover .fusion-button-icon-divider, .fusion-button.button-3:hover .fusion-button-icon-divider, .fusion-button.button-3:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-3:hover, .fusion-button.button-3:focus, .fusion-button.button-3:active{border-color:#fff;}.fusion-button.button-3 {border-color:#fff;border-radius:2px;}.fusion-button.button-3{background: #f86635;}.fusion-button.button-3:hover,.button-3:focus,.fusion-button.button-3:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-3 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3wXhAbh\"><span class=\"fusion-button-text\">Buy Avada Bakery For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-5{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-5 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-5{width:100% !important;order : 0;}.fusion-builder-column-5 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-5{width:100% !important;order : 0;}.fusion-builder-column-5 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-6{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-bakery-deconstructing-a-prebuilt-website/\">Avada Bakery: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://theme-fusion.com/avada-bakery-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:85:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Avada Winery: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://theme-fusion.com/avada-winery-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://theme-fusion.com/avada-winery-deconstructing-a-prebuilt-website/#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 Jul 2021 12:58: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:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";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:5:\"Avada\";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:\"Beginners Guide\";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:10:\"Web Design\";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:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"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://theme-fusion.com/?p=857783\";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:615:\"<p>Say hello to Avada Winery. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Winery can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-winery-deconstructing-a-prebuilt-website/\">Avada Winery: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s: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:138588:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-6 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-40\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/winery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Winery</a>. This <a href=\"https://bit.ly/3uN4jSR\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Winery can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/winery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Winery</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-interior-design-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Interior Design</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/3uN4jSR\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-4 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-4 .fusion-button-text, .fusion-button.button-4 i {color:#fff;}.fusion-button.button-4 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-4:hover .fusion-button-text, .fusion-button.button-4:hover i,.fusion-button.button-4:focus .fusion-button-text, .fusion-button.button-4:focus i,.fusion-button.button-4:active .fusion-button-text, .fusion-button.button-4:active{color:#fff;}.fusion-button.button-4:hover .fusion-button-icon-divider, .fusion-button.button-4:hover .fusion-button-icon-divider, .fusion-button.button-4:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-4:hover, .fusion-button.button-4:focus, .fusion-button.button-4:active{border-color:#fff;}.fusion-button.button-4 {border-color:#fff;border-radius:2px;}.fusion-button.button-4{background: #f86635;}.fusion-button.button-4:hover,.button-4:focus,.fusion-button.button-4:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-4 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/winery/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-4{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-4 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-4{width:100% !important;order : 0;}.fusion-builder-nested-column-4 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-4{width:100% !important;order : 0;}.fusion-builder-nested-column-4 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-5 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-5 .fusion-button-text, .fusion-button.button-5 i {color:#fff;}.fusion-button.button-5 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-5:hover .fusion-button-text, .fusion-button.button-5:hover i,.fusion-button.button-5:focus .fusion-button-text, .fusion-button.button-5:focus i,.fusion-button.button-5:active .fusion-button-text, .fusion-button.button-5:active{color:#fff;}.fusion-button.button-5:hover .fusion-button-icon-divider, .fusion-button.button-5:hover .fusion-button-icon-divider, .fusion-button.button-5:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-5:hover, .fusion-button.button-5:focus, .fusion-button.button-5:active{border-color:#fff;}.fusion-button.button-5 {border-color:#fff;border-radius:2px;}.fusion-button.button-5{background: #f86635;}.fusion-button.button-5:hover,.button-5:focus,.fusion-button.button-5:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-5 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3uN4jSR\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-5{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-5 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-5{width:100% !important;order : 0;}.fusion-builder-nested-column-5 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-5{width:100% !important;order : 0;}.fusion-builder-nested-column-5 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-41{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-41 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-11\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-42{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-42 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-41\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-43{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-43 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-42\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-44{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-44 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-43\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/3uN4jSR\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-18 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-44\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-12\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-45{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-45 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-45\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-19 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-46\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/3uN4jSR\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-46{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-46 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-47\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-20 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"Critical CSS\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1180\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-867029\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x128.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x255.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x383.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x510.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x765.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-48\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-47{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-47 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-49\"><p>Even with all of the performance options provided, <a href=\"https://bit.ly/3uN4jSR\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> plays a lesser part than you might imagine when it comes to site optimization. Websites running<a href=\"https://bit.ly/3vGtmr9\" target=\"_blank\" rel=\"noopener noreferrer\"> </a><a href=\"https://bit.ly/3uN4jSR\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-13\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-48{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-48 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#ff6365;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ff6365\">#ff6365</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#7f0f41;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#7f0f41\">#7f0f41</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#45152a;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#45152a\">#45152a</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#004c4c;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#004c4c\">#004c4c</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#a66d3f;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#a66d3f\">#a66d3f</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#fbf7f3;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#fbf7f3\">#fbf7f3</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#004c4c;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#004c4c\">#004c4c</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#a66d3f;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#a66d3f\">#a66d3f</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#fbf7f3;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#fbf7f3\">#fbf7f3</div></div></div></div><div class=\"fusion-text fusion-text-50\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/winery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Winery</a> prebuilt website is a selection of deep summer colors, as seen above. If you would like to change the Avada Winery color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-49{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-49 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-51\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/3uN4jSR\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/winery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Winery</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-6 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-50{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-50 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-51{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-51 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: \'Playfair Display\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Playfair Display\" data-fusion-google-variant=\"400\">Playfair Display</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-52{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-52 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3, H4 Font Family: <span style=\"font-family: \'Playfair Display\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Playfair Display\" data-fusion-google-variant=\"400\">Playfair Display</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-53{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-53 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5, H6 Font family: <span style=\"font-family: \'Playfair Display\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Playfair Display\" data-fusion-google-variant=\"400\">Playfair Display</span><span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-6{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-6 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-6{width:100% !important;order : 0;}.fusion-builder-nested-column-6 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-6{width:100% !important;order : 0;}.fusion-builder-nested-column-6 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-7 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-54{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-54 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-55{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-55 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: Montserrat; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Montserrat\" data-fusion-google-variant=\"400\">Montserrat</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-7{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-7 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-7{width:100% !important;order : 0;}.fusion-builder-nested-column-7 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-7{width:100% !important;order : 0;}.fusion-builder-nested-column-7 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-52\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-56{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-56 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-53\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-14\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>The <a href=\"https://bit.ly/3uN4jSR\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-57{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-57 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-54\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let’s take the <a href=\"https://avada.theme-fusion.com/winery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Winery prebuilt</a> website for example: It is created as a <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-woocommerce-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">WooCommerce </a>focussed site, and therefore the WooCommerce plugin should be installed and activated at the point of installing the prebuilt site.</p>\n<p>If you decide not to install the WooCommerce plugin, the full site will still be imported, but the eCommerce aspect will not be active. The following plugins have been used with the <a href=\"https://avada.theme-fusion.com/winery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Winery</a> website:</p>\n</div><div class=\"fusion-fss-plugins-used\"><div class=\"fusion-fss-plugins-wrapper\" style=\"flex-direction:row;margin:-7.5px;\"><div class=\"fusion-fss-plugin-wrapper\" style=\"margin:7.5px;flex-basis: calc(50% - 15px);padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em;background-color:#f2f2f2;border-radius:7px;font-size:16px;color:#5e5e5e;\"><div class=\"fusion-fss-plugin\"><span class=\"fusion-fss-plugin-icon\"><svg width=\"169\" height=\"100\" viewBox=\"0 0 169 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0)\"><path d=\"M16.4673 0H152.663C161.282 0 168.26 6.97713 168.26 15.5967V67.585C168.26 76.2039 161.283 83.1817 152.663 83.1817H103.822L110.526 99.5987L81.0431 83.1817H16.5366C7.91761 83.1817 0.93983 76.2046 0.93983 67.585V15.5967C0.871425 7.04575 7.84898 0 16.4679 0H16.4673Z\" fill=\"#9B5C8F\"/><path d=\"M10.4662 14.2157C11.4184 12.9234 12.8468 12.2432 14.7512 12.1072C18.2201 11.8351 20.1926 13.4675 20.6687 17.0044C22.7772 31.2201 25.0897 43.2586 27.5386 53.1214L42.4341 24.7586C43.7944 22.174 45.4948 20.8137 47.5353 20.6776C50.528 20.4736 52.3645 22.378 53.1126 26.391C54.813 35.4374 56.9896 43.1231 59.5742 49.6525C61.3426 32.376 64.3354 19.9296 68.5526 12.2433C69.5729 10.3389 71.0692 9.38666 73.0417 9.25058C74.6061 9.11455 76.0345 9.59066 77.3267 10.6109C78.619 11.6312 79.2992 12.9235 79.4352 14.4878C79.5032 15.7121 79.2992 16.7323 78.755 17.7526C76.1024 22.6498 73.9259 30.8801 72.1577 42.3062C70.4573 53.3931 69.8451 62.031 70.2532 68.2206C70.3892 69.921 70.1172 71.4174 69.437 72.7097C68.6208 74.206 67.3965 75.0222 65.8322 75.1582C64.0637 75.2943 62.2273 74.4781 60.4589 72.6416C54.1334 66.1801 49.1001 56.522 45.4275 43.6665C41.0065 52.3723 37.7419 58.9024 35.6334 63.2554C31.6205 70.941 28.2197 74.8861 25.3628 75.09C23.5263 75.226 21.962 73.6616 20.6016 70.3969C17.1328 61.4864 13.3918 44.2786 9.37876 18.7727C9.1067 17.0042 9.5148 15.4399 10.467 14.2155L10.4662 14.2157ZM156.636 24.8941C154.188 20.6091 150.583 18.0242 145.754 17.0039C144.462 16.7318 143.237 16.5958 142.081 16.5958C135.551 16.5958 130.246 19.9967 126.097 26.7984C122.56 32.5798 120.792 38.9736 120.792 45.9788C120.792 51.2161 121.88 55.705 124.057 59.4461C126.505 63.7312 130.11 66.3161 134.939 67.3363C136.231 67.6084 137.456 67.7444 138.612 67.7444C145.209 67.7444 150.515 64.3436 154.596 57.5418C158.132 51.6924 159.901 45.2987 159.901 38.2935C159.969 32.9882 158.813 28.5673 156.636 24.8941V24.8941ZM148.066 43.7346C147.114 48.2237 145.414 51.5562 142.897 53.8013C140.925 55.5697 139.088 56.3179 137.388 55.9778C135.755 55.6378 134.395 54.2094 133.375 51.5568C132.559 49.4483 132.15 47.3398 132.15 45.3673C132.15 43.6669 132.286 41.9665 132.627 40.4021C133.239 37.6135 134.395 34.8928 136.231 32.308C138.476 28.9752 140.856 27.6149 143.305 28.091C144.938 28.4311 146.298 29.8595 147.318 32.5121C148.134 34.6206 148.542 36.7291 148.542 38.7016C148.542 40.47 148.406 42.1704 148.066 43.7348L148.066 43.7346ZM114.058 24.8941C111.609 20.6091 107.936 18.0242 103.175 17.0039C101.883 16.7318 100.659 16.5958 99.5025 16.5958C92.973 16.5958 87.6679 19.9967 83.5188 26.7984C79.982 32.5798 78.2135 38.9736 78.2135 45.9788C78.2135 51.2161 79.3018 55.705 81.4783 59.4461C83.9269 63.7312 87.5318 66.3161 92.3607 67.3363C93.6529 67.6084 94.8773 67.7444 96.0335 67.7444C102.631 67.7444 107.936 64.3436 112.017 57.5418C115.554 51.6924 117.322 45.2987 117.322 38.2935C117.322 32.9882 116.234 28.5673 114.058 24.8941V24.8941ZM105.42 43.7346C104.468 48.2237 102.767 51.5562 100.251 53.8013C98.2781 55.5697 96.4417 56.3179 94.7413 55.9778C93.1088 55.6378 91.7485 54.2094 90.7283 51.5568C89.9121 49.4483 89.504 47.3398 89.504 45.3673C89.504 43.6669 89.64 41.9665 89.9801 40.4021C90.5923 37.6135 91.7486 34.8928 93.585 32.308C95.8295 28.9752 98.2101 27.6149 100.659 28.091C102.291 28.4311 103.652 29.8595 104.672 32.5121C105.488 34.6206 105.896 36.7291 105.896 38.7016C105.964 40.47 105.76 42.1704 105.42 43.7348L105.42 43.7346Z\" fill=\"white\"/></g><defs><clipPath id=\"clip0\"><rect width=\"167.32\" height=\"100\" fill=\"white\" transform=\"translate(0.93811)\"/></clipPath></defs></svg></span><span class=\"fusion-fss-plugin-text\">WooCommerce</span></div></div></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-58{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-58 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-55\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-15\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-envelope-open-text fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-register-for-avada-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Register for Avada support</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comments fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/support/submit-a-ticket/\" target=\"_blank\" rel=\"noopener noreferrer\">Need to submit a support ticket?</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cart-arrow-down fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/extending-and-renewing-envato-item-support/\" target=\"_blank\" rel=\"noopener noreferrer\">How to extend or renew support</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-question fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/avada-grandfathered-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Are you eligible for Grandfathered support?</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-columns fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-use-the-avada-support-desk/\" target=\"_blank\" rel=\"noopener noreferrer\">How to use the Avada support Dashboard</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-alt fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Documentation</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-video fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://www.youtube.com/c/ThemeFusionVideos/videos\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Video Tutorials</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-59{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-59 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-56\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type. </p>\n<p><a href=\"https://bit.ly/3uN4jSR\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website. </p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-16\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">They are created to save you time when building a new website.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A prebuilt website can be imported with a few clicks.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is mobile and SEO friendly.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">You can white-label any prebuilt website for client work.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Prebuilt websites are included with your <a href=\"https://bit.ly/3uN4jSR\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-60{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-60 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-57\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full website</a> (more than <span class=\"fusion-cs-live-demos\">83</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-21 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-6{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-6 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-6{width:100% !important;order : 0;}.fusion-builder-column-6 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-6{width:100% !important;order : 0;}.fusion-builder-column-6 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-8 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-7 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-61{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-61 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-58\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/winery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Winery</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-17\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/winery/\" target=\"_blank\" rel=\"noopener noreferrer\">Homepage Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/winery/vineyard/\" target=\"_blank\" rel=\"noopener noreferrer\">Vineyard Page Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/winery/distributors/\" target=\"_blank\" rel=\"noopener noreferrer\">Distributors Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/winery/buy-online/\" target=\"_blank\" rel=\"noopener noreferrer\">Buy Online Page Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/winery/blog/\" target=\"_blank\" rel=\"noopener noreferrer\">Blog Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/winery/contact-us/\" target=\"_blank\" rel=\"noopener noreferrer\">Contact Us Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-7{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-7 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-7{width:100% !important;order : 0;}.fusion-builder-column-7 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-7{width:100% !important;order : 0;}.fusion-builder-column-7 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-8{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-9 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-8 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-62{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-62 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-59\"><p>Before we look at the specific Layouts on the <a href=\"https://avada.theme-fusion.com/winery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Winery</a> prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding </a><a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-22 hover-type-none\"><img width=\"1817\" height=\"3407\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x375.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x750.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x1125.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x1500.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-1200x2250.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1817w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-63{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-63 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-60\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-64{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-64 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-61\"><p>The <a href=\"https://avada.theme-fusion.com/winery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Winery</a> prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design Elements</a> to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-23 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryLiveEditing-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[309acb556b41fc6898b]\" data-title=\"Avada+Winery+Live+Editing 2\" title=\"Avada+Winery+Live+Editing 2\"><img width=\"1920\" height=\"857\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryLiveEditing-2.jpg\" class=\"img-responsive wp-image-867065\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryLiveEditing-2-200x89.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryLiveEditing-2-400x179.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryLiveEditing-2-600x268.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryLiveEditing-2-800x357.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryLiveEditing-2-1200x536.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryLiveEditing-2.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-62\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-24 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBackendEditing-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2123658263cc8f2ef87]\" data-title=\"Avada+Winery+Backend+Editing 2\" title=\"Avada+Winery+Backend+Editing 2\"><img width=\"1885\" height=\"842\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBackendEditing-2.jpg\" class=\"img-responsive wp-image-867066\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBackendEditing-2-200x89.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBackendEditing-2-400x179.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBackendEditing-2-600x268.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBackendEditing-2-800x357.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBackendEditing-2-1200x536.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBackendEditing-2.jpg 1885w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-65{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-65 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-63\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-18\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-8{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-8 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-8{width:100% !important;order : 0;}.fusion-builder-column-8 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-8{width:100% !important;order : 0;}.fusion-builder-column-8 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-9{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-10 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-9 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-66{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-66 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-64\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-67{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-67 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-65\"><p>For the <a href=\"https://avada.theme-fusion.com/winery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Winery</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Winery-Global-Header.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-25 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHeader-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2ec60b1cf562c476c3b]\" data-title=\"Avada+Winery+Header 2\" title=\"Avada+Winery+Header 2\"><img width=\"1902\" height=\"233\" alt=\"Avada Winery Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHeader-2.jpg\" class=\"img-responsive wp-image-867067\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHeader-2-200x25.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHeader-2-400x49.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHeader-2-600x74.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHeader-2-800x98.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHeader-2-1200x147.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHeader-2.jpg 1902w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-68{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-68 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-66\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-19\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-9{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-9 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-9{width:100% !important;order : 0;}.fusion-builder-column-9 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-9{width:100% !important;order : 0;}.fusion-builder-column-9 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-10{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-11 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-10 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-69{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-69 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-26 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHero-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[3dd3983c52eb6e97df2]\" data-title=\"Avada+Winery+Hero 2\" title=\"Avada+Winery+Hero 2\"><img width=\"1903\" height=\"604\" alt=\"Avada Winery Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHero-2.jpg\" class=\"img-responsive wp-image-867068\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHero-2-200x63.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHero-2-400x127.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHero-2-600x190.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHero-2-800x254.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHero-2-1200x381.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryHero-2.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-67\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a <a href=\"https://theme-fusion.com/documentation/avada/media/how-background-images-work-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Background Image</a>. Added to the container is one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> with a <a href=\"https://avada.theme-fusion.com/design-elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a> and a <a href=\"https://avada.theme-fusion.com/design-elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>.</p>\n<p>Below, is a single 1/6 (16.67% width) Column with a <a href=\"https://avada.theme-fusion.com/design-elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>. This Column is aligned by setting the Column Justification to center in the Container settings General tab.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-70{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-70 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Wine Category &#8211; CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-27 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBuyCTA-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[8d8b6573b088da7e20e]\" data-title=\"Avada+Winery+Buy+CTA 2\" title=\"Avada+Winery+Buy+CTA 2\"><img width=\"1903\" height=\"386\" alt=\"Avada Winery Wine Category\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBuyCTA-2.jpg\" class=\"img-responsive wp-image-867070\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBuyCTA-2-200x41.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBuyCTA-2-400x81.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBuyCTA-2-600x122.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBuyCTA-2-800x162.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBuyCTA-2-1200x243.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBuyCTA-2.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-68\"><p>In this section we start with a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a>. Three 1/3 (33.33% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>are added to the container, with the left and middle displaying a <a href=\"https://avada.theme-fusion.com/design-elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title </a><a href=\"https://avada.theme-fusion.com/design-elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Element</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, and a <a href=\"https://avada.theme-fusion.com/design-elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n<p>The Container Background settings has a color select on the Gradient option with the Gradient Start Color set with the HEX value <span style=\"color: #2b0d1a;\">#2b0d1a</span> and the start position set on 18. Whereas the Gradient End Color set to default, the position set to 0 and the Gradient Angle set to 180 degrees.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-20\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><strong>Element Visibility</strong> &#8211; You can choose to show or hide a Container, column, or Element on small, medium, or large screens, and you can select more than one at a time. Each of the three sizes has a custom width setting on the Avada Builder Elements tab in the Global Options. Read more <a href=\"https://theme-fusion.com/documentation/avada/options/the-avada-visibility-system/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><strong>Responsive Styling</strong> &#8211; You can set specific styling options independently for different screen sizes. Responsive styling allows you to control settings that correspond to three dimensions, Large (Desktop), Medium (Tablet), and Small (Phone). Read more <a href=\"https://theme-fusion.com/documentation/avada/options/responsive-option-sets/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><strong>Flexbox</strong> &#8211; Flexbox is a CSS3 layout model that provides a more efficient way to design, align and distribute space for Columns inside of any Container. Read more <a href=\"https://theme-fusion.com/documentation/avada/options/introducing-flexbox-for-containers-and-columns/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-71{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-71 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Featured Products</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-28 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFeaturedProducts-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[c52b3e54a7abb7704c0]\" data-title=\"Avada+Winery+Featured+Products 2\" title=\"Avada+Winery+Featured+Products 2\"><img width=\"1904\" height=\"613\" alt=\"Avada Winery Featured Products\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFeaturedProducts-2.jpg\" class=\"img-responsive wp-image-867071\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFeaturedProducts-2-200x64.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFeaturedProducts-2-400x129.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFeaturedProducts-2-600x193.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFeaturedProducts-2-800x258.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFeaturedProducts-2-1200x386.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFeaturedProducts-2.jpg 1904w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-69\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/elements/woo-product-carousel-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Woo Product Carousel Element</a> is a great way for you to showcase your WooCommerce products. You have the option to show a single category, a selection, or all of them. You can also choose to show or hide information such as category, price and buttons.<span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\"><br />\n</span></p>\n<p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, a Container with two 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> were used. In the first Column you will find a <a href=\"https://avada.theme-fusion.com/design-elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a> and a <a href=\"https://avada.theme-fusion.com/design-elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>. In the second Column, the Woo Product Carousel Element is used with the category selection left blank to show all and the Category, Price and Title to show and in this instance, the Title set to show below the Image. </span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-72{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-72 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Subscription Form</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-29 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Winery-Subscription-form-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[0c35bac72a8047770e0]\" data-title=\"Avada-Winery-Subscription-form 2\" title=\"Avada-Winery-Subscription-form 2\"><img width=\"1901\" height=\"749\" alt=\"Avada Winery Subscription Form\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Winery-Subscription-form-2.jpg\" class=\"img-responsive wp-image-867072\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Winery-Subscription-form-2-200x79.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Winery-Subscription-form-2-400x158.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Winery-Subscription-form-2-600x236.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Winery-Subscription-form-2-800x315.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Winery-Subscription-form-2-1200x473.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Winery-Subscription-form-2.jpg 1901w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-70\"><p>The <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-form-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Builder</a> is used to design and build this subscription form. The Form Builder is very flexible and allows you to create many types of forms that you can use on your <a href=\"https://bit.ly/3uN4jSR\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. For any form that you create, you can add them to a page or post as a single instance or you can set the form to display <a href=\"https://theme-fusion.com/documentation/avada/forms/avada-forms-global-options/\" target=\"_blank\" rel=\"noopener noreferrer\">globally</a> across the website, which then allows you to manage one form. If a form is showing on all pages, for example, and you edit the form, the same changes show across all form instances.</p>\n<p>This is illustrated using a Container with a <a href=\"https://theme-fusion.com/documentation/avada/media/how-background-images-work-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Background Image</a> and a series of <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> positioned below each other. The first is a single 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, with a <a href=\"https://avada.theme-fusion.com/design-elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a> and <a style=\"letter-spacing: 0px; font-style: var(--body_typography-font-style,normal); color: #ff2c30;\" href=\"https://avada.theme-fusion.com/design-elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">. The second is a 2/5 (40% width) Column with a Text Block Element. The third is a 3/4 (75% width) Column which holds the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Element</a>. </span></p>\n<p>In this instance the alignment is set under the Container&#8217;s Column Justification, in the General tab.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-73{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-73 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Vineyard Tours &#8211; CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-30 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBookTourCTA-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[801bb734ada07dac82d]\" data-title=\"Avada+Winery+Book+Tour+CTA 2\" title=\"Avada+Winery+Book+Tour+CTA 2\"><img width=\"1904\" height=\"525\" alt=\"Avada Winery Vineyard Tours CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBookTourCTA-2.jpg\" class=\"img-responsive wp-image-867073\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBookTourCTA-2-200x55.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBookTourCTA-2-400x110.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBookTourCTA-2-600x165.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBookTourCTA-2-800x221.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBookTourCTA-2-1200x331.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryBookTourCTA-2.jpg 1904w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-71\"><p>A Call-to-action (CTA) is a marketing method designed to prompt an immediate response or encourage a direct sale from your website visitors. There is no hard and fast rule about how you should create them, other than being an attraction and conversion point on your website. Using the Avada Design Elements, you can make any CTA style that you feel will work for your online business.</p>\n<p>For this example, the CTA section is made up of a Container with a <a href=\"https://theme-fusion.com/documentation/avada/media/how-background-images-work-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Background Image</a>, using a single 1/2 (50% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>. Inside we have a <a href=\"https://avada.theme-fusion.com/design-elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, two <a href=\"https://avada.theme-fusion.com/design-elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, and a <a href=\"https://avada.theme-fusion.com/design-elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-74{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-74 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Recent News</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-31 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryNewsCTA-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[cd495e6d58be5d1b15e]\" data-title=\"Avada+Winery+News+CTA 2\" title=\"Avada+Winery+News+CTA 2\"><img width=\"1903\" height=\"714\" alt=\"Avada Winery Recent News\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryNewsCTA-2.jpg\" class=\"img-responsive wp-image-867074\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryNewsCTA-2-200x75.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryNewsCTA-2-400x150.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryNewsCTA-2-600x225.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryNewsCTA-2-800x300.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryNewsCTA-2-1200x450.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryNewsCTA-2.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-72\"><p>For this example, t<span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">his section uses three 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>. The first contains a <a href=\"https://avada.theme-fusion.com/design-elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title </a>and <a href=\"https://avada.theme-fusion.com/design-elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Box Element</a>, the second has a <a href=\"https://theme-fusion.com/documentation/avada/elements/blog-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Blog Element</a> that is setup to display 3 Columns, the 3 latest posts published in a Grid Layout, with a <a href=\"https://avada.theme-fusion.com/design-elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a> redirecting you to the Blog page, in the last Column.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-10{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-10 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-10{width:100% !important;order : 0;}.fusion-builder-column-10 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-10{width:100% !important;order : 0;}.fusion-builder-column-10 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-11{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-12 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-11 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-75{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-75 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-73\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-21\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#ff6365;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-74\"><p>For the <a href=\"https://avada.theme-fusion.com/winery/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Winery</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-76{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-76 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-32 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFooter-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[6f7734b7494a184b92a]\" data-title=\"Avada+Winery+Footer 2\" title=\"Avada+Winery+Footer 2\"><img width=\"1901\" height=\"659\" alt=\"Avada Winery Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFooter-2.jpg\" class=\"img-responsive wp-image-867075\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFooter-2-200x69.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFooter-2-400x139.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFooter-2-600x208.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFooter-2-800x277.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFooter-2-1200x416.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWineryFooter-2.jpg 1901w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-75\"><p>There is a single Container with a <a href=\"https://theme-fusion.com/documentation/avada/media/how-background-images-work-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Background Image</a>, and a series of <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>that make up the structure. Here you will find a one 1/1 (100% width) Colum in the first row with an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>. In the second row you will find three 1/5 (20% width) Columns, with the Left and Middle Columns containing a Menu Element and the Right uses the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Element</a>. <span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">You can check how this is structured on the backend clicking this </span><span style=\"background-color: rgba(255, 255, 255, 0); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Winery-Global-Footer.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a></span><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-77{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-77 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Subscription Form</h4></div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-33 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWinerySubscriptionform-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[eb220b72b778be87880]\" data-title=\"Avada+Winery+Subscription+form 2\" title=\"Avada+Winery+Subscription+form 2\"><img width=\"517\" height=\"291\" alt=\"Avada Winery Footer Subscription Form\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWinerySubscriptionform-2.jpg\" class=\"img-responsive wp-image-867076\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWinerySubscriptionform-2-200x113.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWinerySubscriptionform-2-400x225.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/AvadaWinerySubscriptionform-2.jpg 517w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 517px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-76\"><p>Different to adding a Subscription Form through the builder, this form has been created and then added to the footer to display <a href=\"https://theme-fusion.com/documentation/avada/forms/avada-forms-global-options/\" target=\"_blank\" rel=\"noopener noreferrer\">globally</a> across the website. This is a great way to suggest to your website visitors to subscribe to your business newsletter and hence improve engagement.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-78{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-78 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-77\"><p>There are <span class=\"fusion-cs-live-demos\">83</span> <a href=\"https://bit.ly/3uN4jSR\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/3uN4jSR\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-6 .fusion-button-text, .fusion-button.button-6 i {color:#fff;}.fusion-button.button-6 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-6:hover .fusion-button-text, .fusion-button.button-6:hover i,.fusion-button.button-6:focus .fusion-button-text, .fusion-button.button-6:focus i,.fusion-button.button-6:active .fusion-button-text, .fusion-button.button-6:active{color:#fff;}.fusion-button.button-6:hover .fusion-button-icon-divider, .fusion-button.button-6:hover .fusion-button-icon-divider, .fusion-button.button-6:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-6:hover, .fusion-button.button-6:focus, .fusion-button.button-6:active{border-color:#fff;}.fusion-button.button-6 {border-color:#fff;border-radius:2px;}.fusion-button.button-6{background: #f86635;}.fusion-button.button-6:hover,.button-6:focus,.fusion-button.button-6:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-6 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3uN4jSR\"><span class=\"fusion-button-text\">Buy Avada Winery For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-11{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-11 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-11{width:100% !important;order : 0;}.fusion-builder-column-11 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-11{width:100% !important;order : 0;}.fusion-builder-column-11 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-12{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-winery-deconstructing-a-prebuilt-website/\">Avada Winery: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://theme-fusion.com/avada-winery-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:85:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Avada Interior Design: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://theme-fusion.com/avada-interior-design-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://theme-fusion.com/avada-interior-design-deconstructing-a-prebuilt-website/#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, 20 Jul 2021 13:09: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:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";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:5:\"Avada\";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:\"Beginners Guide\";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:10:\"Web Design\";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:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"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://theme-fusion.com/?p=868791\";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:636:\"<p>Say hello to Avada Interior Design. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Interior Design can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-interior-design-deconstructing-a-prebuilt-website/\">Avada Interior Design: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s: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:147369:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-13 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-12 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-78\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/interior-design/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Interior Design</a>. This <a href=\"https://bit.ly/3vGtmr9\" target=\"_blank\" rel=\"noopener noreferrer\">Avada </a>prebuilt website is ideal for beginners, marketers, professionals and anyone in between. <a href=\"https://avada.theme-fusion.com/interior-design/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Interior Design</a> can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://theme-fusion.com/avada-takeout-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Interior Design</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-takeout-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Takeout</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/3vGtmr9\" target=\"_blank\" rel=\"noopener noreferrer\">Avada </a>gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-8 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-7 .fusion-button-text, .fusion-button.button-7 i {color:#fff;}.fusion-button.button-7 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-7:hover .fusion-button-text, .fusion-button.button-7:hover i,.fusion-button.button-7:focus .fusion-button-text, .fusion-button.button-7:focus i,.fusion-button.button-7:active .fusion-button-text, .fusion-button.button-7:active{color:#fff;}.fusion-button.button-7:hover .fusion-button-icon-divider, .fusion-button.button-7:hover .fusion-button-icon-divider, .fusion-button.button-7:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-7:hover, .fusion-button.button-7:focus, .fusion-button.button-7:active{border-color:#fff;}.fusion-button.button-7 {border-color:#fff;border-radius:2px;}.fusion-button.button-7{background: #f86635;}.fusion-button.button-7:hover,.button-7:focus,.fusion-button.button-7:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-7 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/interior-design/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-8{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-8 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-8{width:100% !important;order : 0;}.fusion-builder-nested-column-8 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-8{width:100% !important;order : 0;}.fusion-builder-nested-column-8 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-9 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-8 .fusion-button-text, .fusion-button.button-8 i {color:#fff;}.fusion-button.button-8 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-8:hover .fusion-button-text, .fusion-button.button-8:hover i,.fusion-button.button-8:focus .fusion-button-text, .fusion-button.button-8:focus i,.fusion-button.button-8:active .fusion-button-text, .fusion-button.button-8:active{color:#fff;}.fusion-button.button-8:hover .fusion-button-icon-divider, .fusion-button.button-8:hover .fusion-button-icon-divider, .fusion-button.button-8:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-8:hover, .fusion-button.button-8:focus, .fusion-button.button-8:active{border-color:#fff;}.fusion-button.button-8 {border-color:#fff;border-radius:2px;}.fusion-button.button-8{background: #f86635;}.fusion-button.button-8:hover,.button-8:focus,.fusion-button.button-8:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-8 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3vGtmr9\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-9{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-9 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-9{width:100% !important;order : 0;}.fusion-builder-nested-column-9 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-9{width:100% !important;order : 0;}.fusion-builder-nested-column-9 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;flex-grow:10;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-79{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-79 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-22\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &#038; Optimization</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &#038; Layout Sections</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-80{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-80 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-79\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-81{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-81 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-80\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-82{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-82 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-81\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/3vGtmr9\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-34 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-82\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-23\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-83{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-83 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-83\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-35 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-84\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-84{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-84 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-85\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-36 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"Critical CSS\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1180\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-867029\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x128.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x255.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x383.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x510.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x765.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-86\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-85{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-85 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-87\"><p>Even with all of the performance options provided, <a href=\"https://bit.ly/3vGtmr9\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> plays a lesser part than you might imagine when it comes to site optimization. Websites running<a href=\"https://bit.ly/3vGtmr9\" target=\"_blank\" rel=\"noopener noreferrer\"> Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-24\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-86{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-86 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#181b20;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#181b20\">#181b20</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#caa975;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#caa975\">#caa975</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#fafafa;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#fafafa\">#fafafa</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#181b20;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#181b20\">#181b20</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#caa975;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#caa975\">#caa975</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#fafafa;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#fafafa\">#fafafa</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#181b20;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#181b20\">#181b20</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#caa975;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#caa975\">#caa975</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#fafafa;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#fafafa\">#fafafa</div></div></div></div><div class=\"fusion-text fusion-text-88\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/interior-design/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Interior Design</a> prebuilt website is a selection of bright colors, as seen above. If you would like to change the <a href=\"https://avada.theme-fusion.com/interior-design/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Interior Design</a> color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-87{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-87 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-89\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/3vGtmr9\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a><a href=\"https://bit.ly/3c0PcN0\" target=\"_blank\" rel=\"noopener noreferrer\"> </a>website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/interior-design/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Interior Design</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-10 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-88{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-88 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-89{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-89 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: \'Work Sans\'; font-weight: 300;\" data-fusion-font=\"true\" data-fusion-google-font=\"Work Sans\" data-fusion-google-variant=\"300\">Work Sans</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-90{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-90 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3, H4 Font Family: <span style=\"font-family: \'Work Sans\'; font-weight: 300;\" data-fusion-font=\"true\" data-fusion-google-font=\"Work Sans\" data-fusion-google-variant=\"300\">Work Sans</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-91{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-91 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5, H6 Font family: <span style=\"font-family: \'Work Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Work Sans\" data-fusion-google-variant=\"400\">Work Sans</span><span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-10{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-10 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-10{width:100% !important;order : 0;}.fusion-builder-nested-column-10 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-10{width:100% !important;order : 0;}.fusion-builder-nested-column-10 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-11 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-92{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-92 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-93{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-93 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: \'Work Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Work Sans\" data-fusion-google-variant=\"400\">Work Sans</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-11{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-11 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-11{width:100% !important;order : 0;}.fusion-builder-nested-column-11 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-11{width:100% !important;order : 0;}.fusion-builder-nested-column-11 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-90\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-94{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-94 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-91\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-25\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>The <a href=\"https://bit.ly/3vGtmr9\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-95{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-95 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-92\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/interior-design/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Interior Design</a> prebuilt website for example: <span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">It is created as a <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-woocommerce-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">WooCommerce </a>focussed site, and therefore the WooCommerce plugin should be installed and activated at the point of installing the prebuilt site.</span></p>\n<p>If you decide not to install the WooCommerce plugin, the full site will still be imported, but the eCommerce aspect will not be active. The following plugins have been used with the <a href=\"https://avada.theme-fusion.com/interior-design/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Interior Design</a> website:</p>\n</div><div class=\"fusion-fss-plugins-used\"><div class=\"fusion-fss-plugins-wrapper\" style=\"flex-direction:row;margin:-7.5px;\"><div class=\"fusion-fss-plugin-wrapper\" style=\"margin:7.5px;flex-basis: calc(50% - 15px);padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em;background-color:#f2f2f2;border-radius:7px;font-size:16px;color:#5e5e5e;\"><div class=\"fusion-fss-plugin\"><span class=\"fusion-fss-plugin-icon\"><svg width=\"169\" height=\"100\" viewBox=\"0 0 169 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0)\"><path d=\"M16.4673 0H152.663C161.282 0 168.26 6.97713 168.26 15.5967V67.585C168.26 76.2039 161.283 83.1817 152.663 83.1817H103.822L110.526 99.5987L81.0431 83.1817H16.5366C7.91761 83.1817 0.93983 76.2046 0.93983 67.585V15.5967C0.871425 7.04575 7.84898 0 16.4679 0H16.4673Z\" fill=\"#9B5C8F\"/><path d=\"M10.4662 14.2157C11.4184 12.9234 12.8468 12.2432 14.7512 12.1072C18.2201 11.8351 20.1926 13.4675 20.6687 17.0044C22.7772 31.2201 25.0897 43.2586 27.5386 53.1214L42.4341 24.7586C43.7944 22.174 45.4948 20.8137 47.5353 20.6776C50.528 20.4736 52.3645 22.378 53.1126 26.391C54.813 35.4374 56.9896 43.1231 59.5742 49.6525C61.3426 32.376 64.3354 19.9296 68.5526 12.2433C69.5729 10.3389 71.0692 9.38666 73.0417 9.25058C74.6061 9.11455 76.0345 9.59066 77.3267 10.6109C78.619 11.6312 79.2992 12.9235 79.4352 14.4878C79.5032 15.7121 79.2992 16.7323 78.755 17.7526C76.1024 22.6498 73.9259 30.8801 72.1577 42.3062C70.4573 53.3931 69.8451 62.031 70.2532 68.2206C70.3892 69.921 70.1172 71.4174 69.437 72.7097C68.6208 74.206 67.3965 75.0222 65.8322 75.1582C64.0637 75.2943 62.2273 74.4781 60.4589 72.6416C54.1334 66.1801 49.1001 56.522 45.4275 43.6665C41.0065 52.3723 37.7419 58.9024 35.6334 63.2554C31.6205 70.941 28.2197 74.8861 25.3628 75.09C23.5263 75.226 21.962 73.6616 20.6016 70.3969C17.1328 61.4864 13.3918 44.2786 9.37876 18.7727C9.1067 17.0042 9.5148 15.4399 10.467 14.2155L10.4662 14.2157ZM156.636 24.8941C154.188 20.6091 150.583 18.0242 145.754 17.0039C144.462 16.7318 143.237 16.5958 142.081 16.5958C135.551 16.5958 130.246 19.9967 126.097 26.7984C122.56 32.5798 120.792 38.9736 120.792 45.9788C120.792 51.2161 121.88 55.705 124.057 59.4461C126.505 63.7312 130.11 66.3161 134.939 67.3363C136.231 67.6084 137.456 67.7444 138.612 67.7444C145.209 67.7444 150.515 64.3436 154.596 57.5418C158.132 51.6924 159.901 45.2987 159.901 38.2935C159.969 32.9882 158.813 28.5673 156.636 24.8941V24.8941ZM148.066 43.7346C147.114 48.2237 145.414 51.5562 142.897 53.8013C140.925 55.5697 139.088 56.3179 137.388 55.9778C135.755 55.6378 134.395 54.2094 133.375 51.5568C132.559 49.4483 132.15 47.3398 132.15 45.3673C132.15 43.6669 132.286 41.9665 132.627 40.4021C133.239 37.6135 134.395 34.8928 136.231 32.308C138.476 28.9752 140.856 27.6149 143.305 28.091C144.938 28.4311 146.298 29.8595 147.318 32.5121C148.134 34.6206 148.542 36.7291 148.542 38.7016C148.542 40.47 148.406 42.1704 148.066 43.7348L148.066 43.7346ZM114.058 24.8941C111.609 20.6091 107.936 18.0242 103.175 17.0039C101.883 16.7318 100.659 16.5958 99.5025 16.5958C92.973 16.5958 87.6679 19.9967 83.5188 26.7984C79.982 32.5798 78.2135 38.9736 78.2135 45.9788C78.2135 51.2161 79.3018 55.705 81.4783 59.4461C83.9269 63.7312 87.5318 66.3161 92.3607 67.3363C93.6529 67.6084 94.8773 67.7444 96.0335 67.7444C102.631 67.7444 107.936 64.3436 112.017 57.5418C115.554 51.6924 117.322 45.2987 117.322 38.2935C117.322 32.9882 116.234 28.5673 114.058 24.8941V24.8941ZM105.42 43.7346C104.468 48.2237 102.767 51.5562 100.251 53.8013C98.2781 55.5697 96.4417 56.3179 94.7413 55.9778C93.1088 55.6378 91.7485 54.2094 90.7283 51.5568C89.9121 49.4483 89.504 47.3398 89.504 45.3673C89.504 43.6669 89.64 41.9665 89.9801 40.4021C90.5923 37.6135 91.7486 34.8928 93.585 32.308C95.8295 28.9752 98.2101 27.6149 100.659 28.091C102.291 28.4311 103.652 29.8595 104.672 32.5121C105.488 34.6206 105.896 36.7291 105.896 38.7016C105.964 40.47 105.76 42.1704 105.42 43.7348L105.42 43.7346Z\" fill=\"white\"/></g><defs><clipPath id=\"clip0\"><rect width=\"167.32\" height=\"100\" fill=\"white\" transform=\"translate(0.93811)\"/></clipPath></defs></svg></span><span class=\"fusion-fss-plugin-text\">WooCommerce</span></div></div></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-96{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-96 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-93\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-26\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-envelope-open-text fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-register-for-avada-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Register for Avada support</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comments fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/support/submit-a-ticket/\" target=\"_blank\" rel=\"noopener noreferrer\">Need to submit a support ticket?</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cart-arrow-down fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/extending-and-renewing-envato-item-support/\" target=\"_blank\" rel=\"noopener noreferrer\">How to extend or renew support</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-question fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/avada-grandfathered-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Are you eligible for Grandfathered support?</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-columns fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-use-the-avada-support-desk/\" target=\"_blank\" rel=\"noopener noreferrer\">How to use the Avada support Dashboard</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-alt fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Documentation</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-video fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://www.youtube.com/c/ThemeFusionVideos/videos\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Video Tutorials</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-97{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-97 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-94\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type. </p>\n<p><a href=\"https://bit.ly/35cobDU\" target=\" _self\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website. </p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-27\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">They are created to save you time when building a new website.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A prebuilt website can be imported with a few clicks.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is mobile and SEO friendly.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">You can white-label any prebuilt website for client work.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Prebuilt websites are included with your <a href=\"https://bit.ly/35cobDU\" target=\" _self\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-98{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-98 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-95\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full website</a> (more than <span class=\"fusion-cs-live-demos\">83</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-37 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-12{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-12 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-12{width:100% !important;order : 0;}.fusion-builder-column-12 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-12{width:100% !important;order : 0;}.fusion-builder-column-12 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-13{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-14 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-13 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-99{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-99 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-96\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/interior-design/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Interior Design</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-28\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/interior-design/\" target=\"_blank\" rel=\"noopener noreferrer\">Homepage Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/interior-design/home/classic-home/\" target=\"_blank\" rel=\"noopener noreferrer\">Homepage &#8211; Classic Home Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/interior-design/home/extended-home/\" target=\"_blank\" rel=\"noopener noreferrer\">Homepage &#8211; Extended Home Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/interior-design/shop-sidebar/\" target=\"_blank\" rel=\"noopener noreferrer\">Homepage &#8211; Shop with Sidebar Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/interior-design/shop/product-landing-page/\" target=\"_blank\" rel=\"noopener noreferrer\">Homepage &#8211; Product Landing Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/interior-design/shop/\" target=\"_blank\" rel=\"noopener noreferrer\">Shop Page Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/interior-design/product-category/lighting/\" target=\"_blank\" rel=\"noopener noreferrer\">Shop Page &#8211; Lighting Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/interior-design/product-category/furniture/\" target=\"_blank\" rel=\"noopener noreferrer\">Shop Page &#8211; Furniture Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/interior-design/product-category/accessories/\" target=\"_blank\" rel=\"noopener noreferrer\">Shop Page &#8211;  Accessories Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/nutritionist/shop/\" target=\"_blank\" rel=\"noopener noreferrer\">Shop Page &#8211; Storage Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/interior-design/projects/\" target=\"_blank\" rel=\"noopener noreferrer\">Projects Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/interior-design/how-it-works/\" target=\"_blank\" rel=\"noopener noreferrer\">Info Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/interior-design/services/\" target=\"_blank\" rel=\"noopener noreferrer\">Services Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/interior-design/blog/\" target=\"_blank\" rel=\"noopener noreferrer\">Blog Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/interior-design/contact-us/\" target=\"_blank\" rel=\"noopener noreferrer\">Contact Page layout</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-13{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-13 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-13{width:100% !important;order : 0;}.fusion-builder-column-13 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-13{width:100% !important;order : 0;}.fusion-builder-column-13 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-14{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-15 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-14 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-100{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-100 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-97\"><p>Before we look at the specific Layouts on the Avada Interior Design prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-38 hover-type-none\"><img width=\"1817\" height=\"3407\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x375.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x750.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x1125.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x1500.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-1200x2250.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1817w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-101{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-101 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-98\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-102{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-102 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-99\"><p>The <a href=\"https://avada.theme-fusion.com/interior-design/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Interior Design</a> prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design Elements</a> to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-39 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Live-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[582cbeee23db7568188]\" data-title=\"Avada Interior Design Live Editing\" title=\"Avada Interior Design Live Editing\"><img width=\"1919\" height=\"934\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Live-Editing.jpg\" class=\"img-responsive wp-image-868805\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Live-Editing-200x97.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Live-Editing-400x195.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Live-Editing-600x292.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Live-Editing-800x389.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Live-Editing-1200x584.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Live-Editing.jpg 1919w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-100\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-40 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[5dabf628ff52f8d6fa3]\" data-title=\"Avada Interior Design Backend Editing\" title=\"Avada Interior Design Backend Editing\"><img width=\"1900\" height=\"795\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Backend-Editing.jpg\" class=\"img-responsive wp-image-868806\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Backend-Editing-200x84.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Backend-Editing-400x167.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Backend-Editing-600x251.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Backend-Editing-800x335.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Backend-Editing-1200x502.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Backend-Editing.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-103{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-103 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-101\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-29\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-14{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-14 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-14{width:100% !important;order : 0;}.fusion-builder-column-14 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-14{width:100% !important;order : 0;}.fusion-builder-column-14 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-15{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-16 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-15 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-104{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-104 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-102\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-105{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-105 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-103\"><p>For the <a href=\"https://avada.theme-fusion.com/interior-design/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Interior Design</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Global-Header.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-41 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[039ca1eef4dfc9009bc]\" data-title=\"Avada Interior Design Header\" title=\"Avada Interior Design Header\"><img width=\"1903\" height=\"123\" alt=\"Avada Interior Design Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Header.jpg\" class=\"img-responsive wp-image-868808\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Header-200x13.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Header-400x26.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Header-600x39.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Header-800x52.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Header-1200x78.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Header.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-106{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-106 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-104\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-30\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-15{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-15 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-15{width:100% !important;order : 0;}.fusion-builder-column-15 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-15{width:100% !important;order : 0;}.fusion-builder-column-15 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-16{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-17 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-16 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-107{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-107 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-42 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Hero-Section-1.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[6068de48f7fc7455b35]\" data-title=\"Avada Interior Design Hero Section 1\" title=\"Avada Interior Design Hero Section 1\"><img width=\"1899\" height=\"820\" alt=\"Avada Interior Design Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Hero-Section-1.jpg\" class=\"img-responsive wp-image-868809\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Hero-Section-1-200x86.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Hero-Section-1-400x173.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Hero-Section-1-600x259.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Hero-Section-1-800x345.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Hero-Section-1-1200x518.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Hero-Section-1.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-105\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. Added to the container are two 1/6 (16.67% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> and one 2/3 (66.67% width) Column, collectively containing two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-108{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-108 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">About Products</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-43 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-About-Products.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[ca25940e8207a004ac2]\" data-title=\"Avada Interior Design About Products\" title=\"Avada Interior Design About Products\"><img width=\"1887\" height=\"1677\" alt=\"Avada Interior Design About Products\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-About-Products.jpg\" class=\"img-responsive wp-image-868813\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-About-Products-200x178.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-About-Products-400x355.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-About-Products-600x533.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-About-Products-800x711.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-About-Products-1200x1066.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-About-Products.jpg 1887w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-106\"><p>This section starts with a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a>. In this example, you will see four rows of <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>that make up the structure of the Container. In the first row, you will find one 1/3 (33.33% width) Column holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, one 1/6 (16.67% width) Column, and one 1/2 (50% width) Column with an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>. The second row has one 1/1 (100% width) Column containing the <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. Simply put, Nested Columns are Columns within Columns. These Nested Columns contain one 1/2 (50% width) Column, with a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a> and two 1/4 (25% width) Columns, each with a Title Element.</p>\n<p>The third row contains two 1/2 (50% width) Columns with <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Elements</a>, Nested Columns Elements, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, which is followed by the last row which consists of one 1/1 (100% width) Column, using the <a href=\"https://theme-fusion.com/documentation/avada/elements/image-carousel-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Carousel Element</a>.</p>\n<p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">Some useful functionality to highlight:</span></p>\n</div><ul class=\"fusion-checklist fusion-checklist-31\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><strong>Element Visibility</strong> &#8211; You can choose to show or hide a Container, column, or Element on small, medium, or large screens, and you can select more than one at a time. Each of the three sizes has a custom width setting on the Avada Builder Elements tab in the Global Options. Read more <a href=\"https://theme-fusion.com/documentation/avada/options/the-avada-visibility-system/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><strong>Responsive Styling</strong> &#8211; You can set specific styling options independently for different screen sizes. Responsive styling allows you to control settings that correspond to three dimensions, Large (Desktop), Medium (Tablet), and Small (Phone). Read more <a href=\"https://theme-fusion.com/documentation/avada/options/responsive-option-sets/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><strong>Flexbox</strong> &#8211; Flexbox is a CSS3 layout model that provides a more efficient way to design, align and distribute space for Columns inside of any Container. Read more <a href=\"https://theme-fusion.com/documentation/avada/options/introducing-flexbox-for-containers-and-columns/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-109{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-109 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Our Products</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-44 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Products.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[bef77ff17561780416e]\" data-title=\"Avada Interior Design Products\" title=\"Avada Interior Design Products\"><img width=\"1886\" height=\"3039\" alt=\"Avada Interior Design Our Products\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Products.jpg\" class=\"img-responsive wp-image-868817\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Products-200x322.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Products-400x645.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Products-600x967.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Products-800x1289.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Products-1200x1934.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Products.jpg 1886w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-107\"><p>For this example, this section uses one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, this is followed by one 3/5 (60% width) Column with a Title Element and one 2/5 (40% width) Column for spacing.</p>\n<p>Following this, you will find two 1/1 (100% width) Columns, collectively containing the Woo Shortcodes Element, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, and a Title Element, with the last row consisting of four 1/4 (25% width) Columns, each containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-110{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-110 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">CTA &#8211; Call to Action</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-45 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Video.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[59f5ef3149c24314df0]\" data-title=\"Avada Interior Design Video\" title=\"Avada Interior Design Video\"><img width=\"1902\" height=\"686\" alt=\"Avada Interior Design CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Video.jpg\" class=\"img-responsive wp-image-868821\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Video-200x72.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Video-400x144.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Video-600x216.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Video-800x289.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Video-1200x433.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Video.jpg 1902w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-108\"><p>Using images as a way to highlight a call-to-action or for advertizing and promotion reasons is standard practice, and the Avada Website Builder makes this task even easier for you. To create this section, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>Element is added to the page content. To create the style, one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a> was used, along with one 3/5 (60% width) Column with a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a> and one 2/5 (40% width) Column with a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>.</p>\n<p>Depending on the marketing goal, CTA’s can drive a variety of different actions and results for your website visitors. Check this article for some CTA inspiration, <a href=\"https://blog.hubspot.com/marketing/call-to-action-examples\" target=\"_blank\" rel=\"noopener noreferrer\">39 Call-to-Action Examples You Can’t Help But Click</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-111{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-111 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\" id=\"subscriptionform\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Services</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-46 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Services.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[e6ec7770bc23aaef067]\" data-title=\"Avada Interior Design Services\" title=\"Avada Interior Design Services\"><img width=\"1893\" height=\"1049\" alt=\"Avada Interior Design Services\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Services.jpg\" class=\"img-responsive wp-image-868831\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Services-200x111.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Services-400x222.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Services-600x332.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Services-800x443.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Services-1200x665.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Services.jpg 1893w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-109\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/2 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>were used. In the left Column, you will find an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a> and in the right Column, you will find three <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Column Elements</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-112{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-112 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Client Testimonial</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-47 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Testimonial-Big.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[d160d113b6ab2050f54]\" data-title=\"Avada Interior Design Testimonial Big\" title=\"Avada Interior Design Testimonial Big\"><img width=\"1900\" height=\"663\" alt=\"Avada Interior Design Client Testimonial\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Testimonial-Big.jpg\" class=\"img-responsive wp-image-868835\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Testimonial-Big-200x70.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Testimonial-Big-400x140.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Testimonial-Big-600x209.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Testimonial-Big-800x279.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Testimonial-Big-1200x419.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Testimonial-Big.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-110\"><p>In this section, you will find a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image and one 3/5 (60% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a> containing a single 1/1 (100% width) Column with a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-113{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-113 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Articles</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-48 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Articles.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[3e61010f2cc5ebe218d]\" data-title=\"Avada Interior Design Articles\" title=\"Avada Interior Design Articles\"><img width=\"1901\" height=\"750\" alt=\"Avada Interior Designer Articles\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Articles.jpg\" class=\"img-responsive wp-image-868840\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Articles-200x79.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Articles-400x158.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Articles-600x237.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Articles-800x316.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Articles-1200x473.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Articles.jpg 1901w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-111\"><p>In this section, there is a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>using a Title Element, one 1/2 (50% width) Column using a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, two 1/4 (25% width) Columns with one holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, finishing this section off with another 1/1 (100% width) Column with a <a href=\"https://theme-fusion.com/documentation/avada/elements/blog-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Blog Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-114{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-114 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Follow Us</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-49 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Follow-Us.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[5cecce89dec4eadc800]\" data-title=\"Avada Interior Design Follow Us\" title=\"Avada Interior Design Follow Us\"><img width=\"1898\" height=\"751\" alt=\"Avada Interior Design Follow Us\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Follow-Us.jpg\" class=\"img-responsive wp-image-868843\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Follow-Us-200x79.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Follow-Us-400x158.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Follow-Us-600x237.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Follow-Us-800x317.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Follow-Us-1200x475.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Follow-Us.jpg 1898w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-112\"><p>This section is set as a Global <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/4 (25% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>used, for spacing, on either side of one 1/2 (50% width) Column, which contains a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>. This is followed by one 1/1 (100% width) Column using the <a href=\"https://theme-fusion.com/documentation/avada/elements/gallery-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Gallery Element</a>.</p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-16{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-16 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-16{width:100% !important;order : 0;}.fusion-builder-column-16 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-16{width:100% !important;order : 0;}.fusion-builder-column-16 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-17{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-18 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-17 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-115{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-115 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-113\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-32\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#2e3c54;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-114\"><p>For the <a href=\"https://avada.theme-fusion.com/interior-design/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Interior Design</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-116{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-116 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-50 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[afefe99aca44e97e908]\" data-title=\"Avada Interior Design Footer\" title=\"Avada Interior Design Footer\"><img width=\"1902\" height=\"409\" alt=\"Avada Nutritionist Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Footer.jpg\" class=\"img-responsive wp-image-868847\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Footer-200x43.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Footer-400x86.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Footer-600x129.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Footer-800x172.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Footer-1200x258.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Footer.jpg 1902w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-115\"><p>There is a single <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a>, and a series of <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>that make up the structure. Within the <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>you will find <a href=\"https://avada.theme-fusion.com/design-elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://avada.theme-fusion.com/design-elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/menu-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Menu Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/social-links-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Social Links Element</a>, and the use of <a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website copyright information. You can check how this is structured on the backend clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Interior-Design-Global-Footer.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-117{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-117 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-116\"><p>There are <span class=\"fusion-cs-live-demos\">83</span> <a href=\"https://bit.ly/3vGtmr9\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a><a href=\"https://bit.ly/3c0PcN0\" target=\"_blank\" rel=\"noopener noreferrer\"> </a>prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/3c0PcN0\" target=\"_blank\" rel=\"noopener noreferrer\">next </a>website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-9 .fusion-button-text, .fusion-button.button-9 i {color:#fff;}.fusion-button.button-9 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-9:hover .fusion-button-text, .fusion-button.button-9:hover i,.fusion-button.button-9:focus .fusion-button-text, .fusion-button.button-9:focus i,.fusion-button.button-9:active .fusion-button-text, .fusion-button.button-9:active{color:#fff;}.fusion-button.button-9:hover .fusion-button-icon-divider, .fusion-button.button-9:hover .fusion-button-icon-divider, .fusion-button.button-9:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-9:hover, .fusion-button.button-9:focus, .fusion-button.button-9:active{border-color:#fff;}.fusion-button.button-9 {border-color:#fff;border-radius:2px;}.fusion-button.button-9{background: #f86635;}.fusion-button.button-9:hover,.button-9:focus,.fusion-button.button-9:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-9 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3vGtmr9\"><span class=\"fusion-button-text\">Buy Avada Interior Design For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-17{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-17 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-17{width:100% !important;order : 0;}.fusion-builder-column-17 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-17{width:100% !important;order : 0;}.fusion-builder-column-17 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-18{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-interior-design-deconstructing-a-prebuilt-website/\">Avada Interior Design: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://theme-fusion.com/avada-interior-design-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:85:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Avada Takeout: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://theme-fusion.com/avada-takeout-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://theme-fusion.com/avada-takeout-deconstructing-a-prebuilt-website/#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, 13 Jul 2021 17:54:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";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:5:\"Avada\";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:\"Beginners Guide\";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:10:\"Web Design\";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:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"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://theme-fusion.com/?p=868398\";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:613:\"<p>Say hello to Avada Takeout. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Takeout can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-takeout-deconstructing-a-prebuilt-website/\">Avada Takeout: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s: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:139106:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-19 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-18 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-117\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/takeout/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Takeout</a>. This <a href=\"https://bit.ly/3c31m9H\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Takeout can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/takeout/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Takeout</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-cleaning-services-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Cleaning Services</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/3c31m9H\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-12 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-10 .fusion-button-text, .fusion-button.button-10 i {color:#fff;}.fusion-button.button-10 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-10:hover .fusion-button-text, .fusion-button.button-10:hover i,.fusion-button.button-10:focus .fusion-button-text, .fusion-button.button-10:focus i,.fusion-button.button-10:active .fusion-button-text, .fusion-button.button-10:active{color:#fff;}.fusion-button.button-10:hover .fusion-button-icon-divider, .fusion-button.button-10:hover .fusion-button-icon-divider, .fusion-button.button-10:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-10:hover, .fusion-button.button-10:focus, .fusion-button.button-10:active{border-color:#fff;}.fusion-button.button-10 {border-color:#fff;border-radius:2px;}.fusion-button.button-10{background: #f86635;}.fusion-button.button-10:hover,.button-10:focus,.fusion-button.button-10:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-10 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/takeout/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-12{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-12 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-12{width:100% !important;order : 0;}.fusion-builder-nested-column-12 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-12{width:100% !important;order : 0;}.fusion-builder-nested-column-12 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-13 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-11 .fusion-button-text, .fusion-button.button-11 i {color:#fff;}.fusion-button.button-11 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-11:hover .fusion-button-text, .fusion-button.button-11:hover i,.fusion-button.button-11:focus .fusion-button-text, .fusion-button.button-11:focus i,.fusion-button.button-11:active .fusion-button-text, .fusion-button.button-11:active{color:#fff;}.fusion-button.button-11:hover .fusion-button-icon-divider, .fusion-button.button-11:hover .fusion-button-icon-divider, .fusion-button.button-11:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-11:hover, .fusion-button.button-11:focus, .fusion-button.button-11:active{border-color:#fff;}.fusion-button.button-11 {border-color:#fff;border-radius:2px;}.fusion-button.button-11{background: #f86635;}.fusion-button.button-11:hover,.button-11:focus,.fusion-button.button-11:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-11 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3c31m9H\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-13{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-13 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-13{width:100% !important;order : 0;}.fusion-builder-nested-column-13 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-13{width:100% !important;order : 0;}.fusion-builder-nested-column-13 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-118{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-118 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-33\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-119{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-119 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-118\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-120{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-120 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-119\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-121{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-121 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-120\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/3c31m9H\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-51 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-121\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-34\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-122{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-122 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-122\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling. The new features that <a href=\"https://bit.ly/3c31m9H\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> provides will allow you to optimize your content for improved performance on mobile &amp; desktop.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-52 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-123\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling. The new features that <a href=\"https://bit.ly/3c31m9H\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> provides will allow you to optimize your content for improved performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-123{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-123 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-124\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-53 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"Critical CSS\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1180\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-867029\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x128.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x255.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x383.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x510.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x765.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-125\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-124{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-124 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-126\"><p>Even with all of the performance options provided, Avada plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://bit.ly/3c31m9H\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-35\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-125{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-125 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#ce1a26;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ce1a26\">#ce1a26</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#fcdc31;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#fcdc31\">#fcdc31</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#594b02;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#594b02\">#594b02</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ce1a26;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ce1a26\">#ce1a26</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#fcdc31;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#fcdc31\">#fcdc31</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#594b02;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#594b02\">#594b02</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ce1a26;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ce1a26\">#ce1a26</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#fcdc31;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#fcdc31\">#fcdc31</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#594b02;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#594b02\">#594b02</div></div></div></div><div class=\"fusion-text fusion-text-127\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/takeout/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Takeout</a> prebuilt website is a spontaneous grouping, as seen above. If you would like to change the Avada Takeout color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-126{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-126 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-128\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/3c31m9H\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a><a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\"> </a>website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/takeout/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Takeout</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-14 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-127{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-127 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-128{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-128 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: Barlow; font-weight: 700;\" data-fusion-font=\"true\" data-fusion-google-font=\"Barlow\" data-fusion-google-variant=\"700\">Barlow</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-129{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-129 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3,H4 Font Family: <span style=\"font-family: Barlow; font-weight: 600;\" data-fusion-font=\"true\" data-fusion-google-font=\"Barlow\" data-fusion-google-variant=\"600\">Barlow</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-130{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-130 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5, H6 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: Barlow; font-weight: 600;\" data-fusion-font=\"true\" data-fusion-google-font=\"Barlow\" data-fusion-google-variant=\"600\">Barlow</span><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-14{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-14 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-14{width:100% !important;order : 0;}.fusion-builder-nested-column-14 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-14{width:100% !important;order : 0;}.fusion-builder-nested-column-14 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-15 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-131{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-131 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-132{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-132 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: \'Open Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\">Open Sans</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-15{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-15 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-15{width:100% !important;order : 0;}.fusion-builder-nested-column-15 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-15{width:100% !important;order : 0;}.fusion-builder-nested-column-15 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-129\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-133{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-133 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-130\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-36\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">The <a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-134{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-134 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-131\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/takeout/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Takeout</a> prebuilt website as an example: It is created as a <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-woocommerce-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">WooCommerce</a> focussed site, and therefore the WooCommerce plugin should be installed and activated at the point of installing the prebuilt site.</p>\n<p>If you decide not to install the WooCommerce plugin, the full site will still be imported, but the eCommerce aspect will not be active. The following plugins have been used with the <a href=\"https://avada.theme-fusion.com/takeout/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Takeout</a> website:</p>\n</div><div class=\"fusion-fss-plugins-used\"><div class=\"fusion-fss-plugins-wrapper\" style=\"flex-direction:row;margin:-7.5px;\"><div class=\"fusion-fss-plugin-wrapper\" style=\"margin:7.5px;flex-basis: calc(50% - 15px);padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em;background-color:#F2F7F8;border-radius:7px;font-size:1.2em;color:#333333;\"><div class=\"fusion-fss-plugin\"><span class=\"fusion-fss-plugin-icon\"><svg width=\"169\" height=\"100\" viewBox=\"0 0 169 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0)\"><path d=\"M16.4673 0H152.663C161.282 0 168.26 6.97713 168.26 15.5967V67.585C168.26 76.2039 161.283 83.1817 152.663 83.1817H103.822L110.526 99.5987L81.0431 83.1817H16.5366C7.91761 83.1817 0.93983 76.2046 0.93983 67.585V15.5967C0.871425 7.04575 7.84898 0 16.4679 0H16.4673Z\" fill=\"#9B5C8F\"/><path d=\"M10.4662 14.2157C11.4184 12.9234 12.8468 12.2432 14.7512 12.1072C18.2201 11.8351 20.1926 13.4675 20.6687 17.0044C22.7772 31.2201 25.0897 43.2586 27.5386 53.1214L42.4341 24.7586C43.7944 22.174 45.4948 20.8137 47.5353 20.6776C50.528 20.4736 52.3645 22.378 53.1126 26.391C54.813 35.4374 56.9896 43.1231 59.5742 49.6525C61.3426 32.376 64.3354 19.9296 68.5526 12.2433C69.5729 10.3389 71.0692 9.38666 73.0417 9.25058C74.6061 9.11455 76.0345 9.59066 77.3267 10.6109C78.619 11.6312 79.2992 12.9235 79.4352 14.4878C79.5032 15.7121 79.2992 16.7323 78.755 17.7526C76.1024 22.6498 73.9259 30.8801 72.1577 42.3062C70.4573 53.3931 69.8451 62.031 70.2532 68.2206C70.3892 69.921 70.1172 71.4174 69.437 72.7097C68.6208 74.206 67.3965 75.0222 65.8322 75.1582C64.0637 75.2943 62.2273 74.4781 60.4589 72.6416C54.1334 66.1801 49.1001 56.522 45.4275 43.6665C41.0065 52.3723 37.7419 58.9024 35.6334 63.2554C31.6205 70.941 28.2197 74.8861 25.3628 75.09C23.5263 75.226 21.962 73.6616 20.6016 70.3969C17.1328 61.4864 13.3918 44.2786 9.37876 18.7727C9.1067 17.0042 9.5148 15.4399 10.467 14.2155L10.4662 14.2157ZM156.636 24.8941C154.188 20.6091 150.583 18.0242 145.754 17.0039C144.462 16.7318 143.237 16.5958 142.081 16.5958C135.551 16.5958 130.246 19.9967 126.097 26.7984C122.56 32.5798 120.792 38.9736 120.792 45.9788C120.792 51.2161 121.88 55.705 124.057 59.4461C126.505 63.7312 130.11 66.3161 134.939 67.3363C136.231 67.6084 137.456 67.7444 138.612 67.7444C145.209 67.7444 150.515 64.3436 154.596 57.5418C158.132 51.6924 159.901 45.2987 159.901 38.2935C159.969 32.9882 158.813 28.5673 156.636 24.8941V24.8941ZM148.066 43.7346C147.114 48.2237 145.414 51.5562 142.897 53.8013C140.925 55.5697 139.088 56.3179 137.388 55.9778C135.755 55.6378 134.395 54.2094 133.375 51.5568C132.559 49.4483 132.15 47.3398 132.15 45.3673C132.15 43.6669 132.286 41.9665 132.627 40.4021C133.239 37.6135 134.395 34.8928 136.231 32.308C138.476 28.9752 140.856 27.6149 143.305 28.091C144.938 28.4311 146.298 29.8595 147.318 32.5121C148.134 34.6206 148.542 36.7291 148.542 38.7016C148.542 40.47 148.406 42.1704 148.066 43.7348L148.066 43.7346ZM114.058 24.8941C111.609 20.6091 107.936 18.0242 103.175 17.0039C101.883 16.7318 100.659 16.5958 99.5025 16.5958C92.973 16.5958 87.6679 19.9967 83.5188 26.7984C79.982 32.5798 78.2135 38.9736 78.2135 45.9788C78.2135 51.2161 79.3018 55.705 81.4783 59.4461C83.9269 63.7312 87.5318 66.3161 92.3607 67.3363C93.6529 67.6084 94.8773 67.7444 96.0335 67.7444C102.631 67.7444 107.936 64.3436 112.017 57.5418C115.554 51.6924 117.322 45.2987 117.322 38.2935C117.322 32.9882 116.234 28.5673 114.058 24.8941V24.8941ZM105.42 43.7346C104.468 48.2237 102.767 51.5562 100.251 53.8013C98.2781 55.5697 96.4417 56.3179 94.7413 55.9778C93.1088 55.6378 91.7485 54.2094 90.7283 51.5568C89.9121 49.4483 89.504 47.3398 89.504 45.3673C89.504 43.6669 89.64 41.9665 89.9801 40.4021C90.5923 37.6135 91.7486 34.8928 93.585 32.308C95.8295 28.9752 98.2101 27.6149 100.659 28.091C102.291 28.4311 103.652 29.8595 104.672 32.5121C105.488 34.6206 105.896 36.7291 105.896 38.7016C105.964 40.47 105.76 42.1704 105.42 43.7348L105.42 43.7346Z\" fill=\"white\"/></g><defs><clipPath id=\"clip0\"><rect width=\"167.32\" height=\"100\" fill=\"white\" transform=\"translate(0.93811)\"/></clipPath></defs></svg></span><span class=\"fusion-fss-plugin-text\">WooCommerce</span></div></div></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-135{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-135 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-132\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-37\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-envelope-open-text fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-register-for-avada-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Register for Avada support</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comments fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/support/submit-a-ticket/\" target=\"_blank\" rel=\"noopener noreferrer\">Need to submit a support ticket?</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cart-arrow-down fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/extending-and-renewing-envato-item-support/\" target=\"_blank\" rel=\"noopener noreferrer\">How to extend or renew support</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-question fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/avada-grandfathered-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Are you eligible for Grandfathered support?</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-columns fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-use-the-avada-support-desk/\" target=\"_blank\" rel=\"noopener noreferrer\">How to use the Avada support Dashboard</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-alt fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Documentation</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-video fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://www.youtube.com/c/ThemeFusionVideos/videos\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Video Tutorials</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-136{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-136 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-133\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type. </p>\n<p><a href=\"https://bit.ly/3c31m9H\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website. </p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-38\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">They are created to save you time when building a new website.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A prebuilt website can be imported with a few clicks.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is mobile and SEO friendly.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">You can white-label any prebuilt website for client work.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Prebuilt websites are included with your <a href=\"https://bit.ly/3c31m9H\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-137{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-137 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-134\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full website</a><a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\"> </a>(more than <span class=\"fusion-cs-live-demos\">83</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-54 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-18{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-18 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-18{width:100% !important;order : 0;}.fusion-builder-column-18 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-18{width:100% !important;order : 0;}.fusion-builder-column-18 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-19{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-20 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-19 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-138{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-138 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-135\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/takeout/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Takeout</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-39\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/takeout/\" target=\"_blank\" rel=\"noopener noreferrer\">Home Page &#8211; Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/takeout/alternate-home/\" target=\"_blank\" rel=\"noopener noreferrer\">Alternate Home &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/takeout/menu/\" target=\"_blank\" rel=\"noopener noreferrer\">Ordering Online &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/takeout/about/\" target=\"_blank\" rel=\"noopener noreferrer\">About &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/takeout/news/\" target=\"_blank\" rel=\"noopener noreferrer\">News &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/takeout/contact-us/\" target=\"_blank\" rel=\"noopener noreferrer\">Contact &#8211; Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-19{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-19 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-19{width:100% !important;order : 0;}.fusion-builder-column-19 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-19{width:100% !important;order : 0;}.fusion-builder-column-19 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-20{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-21 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-20 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-139{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-139 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-136\"><p>Before we look at the specific Layouts on the Avada Takeout prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-55 hover-type-none\"><img width=\"1817\" height=\"3407\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x375.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x750.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x1125.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x1500.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-1200x2250.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1817w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-140{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-140 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-137\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-141{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-141 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-138\"><p>The <a href=\"https://avada.theme-fusion.com/takeout/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Takeout</a><a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\"> </a>prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-56 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Live-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[21a0e6e2cf993574f15]\" data-title=\"Avada Takeout Live Editing\" title=\"Avada Takeout Live Editing\"><img width=\"1920\" height=\"935\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Live-Editing.jpg\" class=\"img-responsive wp-image-868420\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Live-Editing-200x97.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Live-Editing-400x195.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Live-Editing-600x292.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Live-Editing-800x390.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Live-Editing-1200x584.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Live-Editing.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-139\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-57 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[27cf65a14f736663610]\" data-title=\"Avada Takeout Backend Editing\" title=\"Avada Takeout Backend Editing\"><img width=\"1901\" height=\"848\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Backend-Editing.jpg\" class=\"img-responsive wp-image-868421\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Backend-Editing-200x89.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Backend-Editing-400x178.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Backend-Editing-600x268.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Backend-Editing-800x357.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Backend-Editing-1200x535.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Backend-Editing.jpg 1901w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-142{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-142 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-140\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-40\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-20{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-20 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-20{width:100% !important;order : 0;}.fusion-builder-column-20 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-20{width:100% !important;order : 0;}.fusion-builder-column-20 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-21{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-22 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-21 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-143{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-143 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-141\"><p>If you type the base-level domain name of any particular website into the browser, you will, by default, arrive on the website&#8217;s homepage. The homepage serves as a vital landing page for your visitors by capturing their attention and letting them know what the website is all about. There is the conjectured &#8220;5 Second Rule&#8221; for Web Usability and how it translates the user reaction when landing on the site for the first time into either a positive or negative experience.</p>\n<p>For well over a decade, the main focus for web designers was to showcase style over function for the most part. As time has passed, <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">above the fold</a> content delivery and the impact on <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a> has shifted the focus over to mobile vs. desktop speed and <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>.</p>\n<p>Each of the Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">Prebuilt Websites</a> are meticulously designed with the ideal balance between style and function, and we use the Avada <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> to provide improved results.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-144{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-144 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-142\"><p>For the Avada Takeout prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Global-Header.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-58 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[71644eeba7fa213f486]\" data-title=\"Avada Takeout Header\" title=\"Avada Takeout Header\"><img width=\"1901\" height=\"182\" alt=\"Avada Takeout Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Header.jpg\" class=\"img-responsive wp-image-868423\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Header-200x19.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Header-400x38.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Header-600x57.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Header-800x77.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Header-1200x115.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Header.jpg 1901w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-145{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-145 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-143\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-41\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-21{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-21 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-21{width:100% !important;order : 0;}.fusion-builder-column-21 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-21{width:100% !important;order : 0;}.fusion-builder-column-21 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-22{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-23 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-22 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-146{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-146 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-59 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[b47463fa6ae11517b67]\" data-title=\"Avada Takeout Hero\" title=\"Avada Takeout Hero\"><img width=\"1899\" height=\"815\" alt=\"Avada Takeout Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Hero.jpg\" class=\"img-responsive wp-image-868424\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Hero-200x86.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Hero-400x172.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Hero-600x258.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Hero-800x343.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Hero-1200x515.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Hero.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-144\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. Added to the container is one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, <span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">structured with two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-147{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-147 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">More Information</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-60 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-4x-USP.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[9696d8ae0b3cc4aab8b]\" data-title=\"Avada Takeout 4x USP\" title=\"Avada Takeout 4x USP\"><img width=\"1901\" height=\"146\" alt=\"Avada Takeout More Information\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-4x-USP.jpg\" class=\"img-responsive wp-image-868426\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-4x-USP-200x15.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-4x-USP-400x31.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-4x-USP-600x46.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-4x-USP-800x61.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-4x-USP-1200x92.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-4x-USP.jpg 1901w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-145\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This section is built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> using the <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. Simply put, Nested Columns are columns within columns. In this example, the Nested Columns Element contains four 1/4 (25% width) Columns, each containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/checklist-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Checklist Element</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-148{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-148 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Most Popular</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-61 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Most-Popular.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[ce7e5f9fd9029bf2a3e]\" data-title=\"Avada Takeout Most Popular\" title=\"Avada Takeout Most Popular\"><img width=\"1898\" height=\"854\" alt=\"Avada Takeout Most Popular\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Most-Popular.jpg\" class=\"img-responsive wp-image-868430\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Most-Popular-200x90.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Most-Popular-400x180.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Most-Popular-600x270.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Most-Popular-800x360.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Most-Popular-1200x540.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Most-Popular.jpg 1898w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-146\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with three rows with <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, with each row containing one 1/1 (100% width) Column. Collectively, these Columns hold a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, the <a href=\"https://theme-fusion.com/documentation/avada/elements/woo-featured-products-slider-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Woo Featured Products Slider Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-149{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-149 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Discount Banner</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-62 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-20_-Off.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[dfa3f76476cb25abee0]\" data-title=\"Avada Takeout 20_ Off\" title=\"Avada Takeout 20_ Off\"><img width=\"1903\" height=\"630\" alt=\"Avada Takeout Discount Banner\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-20_-Off.jpg\" class=\"img-responsive wp-image-868434\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-20_-Off-200x66.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-20_-Off-400x132.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-20_-Off-600x199.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-20_-Off-800x265.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-20_-Off-1200x397.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-20_-Off.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-147\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image. Here you will find one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> with a <a href=\"https://theme-fusion.com/documentation/avada/elements/section-separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Section Separator Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-150{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-150 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Our Menu</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-63 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu-CTA.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[ca199b727ce6b8a1b97]\" data-title=\"Avada Takeout Our Menu CTA\" title=\"Avada Takeout Our Menu CTA\"><img width=\"1901\" height=\"652\" alt=\"Avada Takeout Our Menu\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu-CTA.jpg\" class=\"img-responsive wp-image-868438\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu-CTA-200x69.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu-CTA-400x137.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu-CTA-600x206.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu-CTA-800x274.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu-CTA-1200x412.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu-CTA.jpg 1901w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-148\"><p>Using images as a way to highlight a call-to-action or for advertizing and promotion reasons is standard practice, and the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> makes this task even easier for you. To create this section, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container Element</a> with 3 rows of <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>. In the first row, you will find one 2/3 (66.67% width) Column, containing two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a> and one 1/3 (33.33% width) Column, containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n<p>In the second and third rows, you will see that there are four 1/4 (25% width) Columns, per row. Each Column has a Link URL and a Background Image, with a Title Element.</p>\n<p>Depending on the marketing goal, CTA&#8217;s can drive a variety of different actions and results for your website visitors. Check this article for some CTA inspiration, <a href=\"https://blog.hubspot.com/marketing/call-to-action-examples\" target=\"_blank\" rel=\"noopener noreferrer\">39 Call-to-Action Examples You Can&#8217;t Help But Click</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-151{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-151 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Menu Categories</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-64 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2b018c0efea44f5be1c]\" data-title=\"Avada Takeout Our Menu\" title=\"Avada Takeout Our Menu\"><img width=\"1900\" height=\"211\" alt=\"Avada Takeout Menu Categories\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu.jpg\" class=\"img-responsive wp-image-868447\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu-200x22.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu-400x44.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu-600x67.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu-800x89.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu-1200x133.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Our-Menu.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-149\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with four 1/4 (25% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, each containing an <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-152{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-152 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Mobile App &#8211; CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-65 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Download-Our-App.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2bb37ce46e0bb6d8c17]\" data-title=\"Avada Takeout Download Our App\" title=\"Avada Takeout Download Our App\"><img width=\"1902\" height=\"570\" alt=\"Avada Takeout Mobile App CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Download-Our-App.jpg\" class=\"img-responsive wp-image-868455\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Download-Our-App-200x60.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Download-Our-App-400x120.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Download-Our-App-600x180.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Download-Our-App-800x240.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Download-Our-App-1200x360.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Download-Our-App.jpg 1902w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-150\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, the CTA section is made up of a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image. Here you will find two 1/2 (50% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, collectively containing two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. The Nested Columns Element is structured with three 1/3 (33.33% width) Columns, of which the first two contain an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a> with a Picture Link, and the third is used for spacing.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-153{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-153 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Latest News</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-66 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Latest-News.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[ccb7fd3c83712f6b4b5]\" data-title=\"Avada Takeout Latest News\" title=\"Avada Takeout Latest News\"><img width=\"1902\" height=\"839\" alt=\"Avada Takeout Latest News\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Latest-News.jpg\" class=\"img-responsive wp-image-868457\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Latest-News-200x88.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Latest-News-400x176.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Latest-News-600x265.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Latest-News-800x353.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Latest-News-1200x529.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Latest-News.jpg 1902w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-151\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, </span><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px;\">a</span><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\"> <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two rows of <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> is used. In the first row, there is one 2/3 (66.67% width) Column with two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a> and one 1/3 (33.33% width) Column, with a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>. </span><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); font-style: var(--body_typography-font-style,normal); letter-spacing: 0px;\">In the second row, there are two 1/2 (50% width) Columns, each of them containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/blog-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Blog Element</a>.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-22{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-22 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-22{width:100% !important;order : 0;}.fusion-builder-column-22 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-22{width:100% !important;order : 0;}.fusion-builder-column-22 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-23{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-24 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-23 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-154{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-154 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-152\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-42\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#ce1a26;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-153\"><p>For the <a href=\"https://avada.theme-fusion.com/takeout/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Takeout</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-155{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-155 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-67 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[ab7af97c3e9382e184a]\" data-title=\"Avada Takeout Footer\" title=\"Avada Takeout Footer\"><img width=\"1901\" height=\"905\" alt=\"Avada Takeout Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Footer.jpg\" class=\"img-responsive wp-image-868460\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Footer-200x95.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Footer-400x190.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Footer-600x286.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Footer-800x381.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Footer-1200x571.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Footer.jpg 1901w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-154\"><p>The Footer content is structured using one <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a>. Here you will find several <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> using a couple of <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/widget-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Widget Element</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/social-links-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Social Links Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>, and the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Element</a>, with the use of <a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website information, in the second Container. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Takeout-Global-Footer.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-156{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-156 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-155\"><p>There are <span class=\"fusion-cs-live-demos\">83</span> <a href=\"https://bit.ly/3c31m9H\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/3c31m9H\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-12 .fusion-button-text, .fusion-button.button-12 i {color:#fff;}.fusion-button.button-12 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-12:hover .fusion-button-text, .fusion-button.button-12:hover i,.fusion-button.button-12:focus .fusion-button-text, .fusion-button.button-12:focus i,.fusion-button.button-12:active .fusion-button-text, .fusion-button.button-12:active{color:#fff;}.fusion-button.button-12:hover .fusion-button-icon-divider, .fusion-button.button-12:hover .fusion-button-icon-divider, .fusion-button.button-12:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-12:hover, .fusion-button.button-12:focus, .fusion-button.button-12:active{border-color:#fff;}.fusion-button.button-12 {border-color:#fff;border-radius:2px;}.fusion-button.button-12{background: #f86635;}.fusion-button.button-12:hover,.button-12:focus,.fusion-button.button-12:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-12 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3c31m9H\"><span class=\"fusion-button-text\">Buy Avada Takeout For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-23{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-23 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-23{width:100% !important;order : 0;}.fusion-builder-column-23 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-23{width:100% !important;order : 0;}.fusion-builder-column-23 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-24{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-takeout-deconstructing-a-prebuilt-website/\">Avada Takeout: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://theme-fusion.com/avada-takeout-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:85:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Avada Cleaning Services: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://theme-fusion.com/avada-cleaning-services-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://theme-fusion.com/avada-cleaning-services-deconstructing-a-prebuilt-website/#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, 06 Jul 2021 11:38:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";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:5:\"Avada\";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:\"Beginners Guide\";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:10:\"Web Design\";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:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"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://theme-fusion.com/?p=866804\";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:640:\"<p>Say hello to Avada Cleaning Services. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Cleaning Services can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-cleaning-services-deconstructing-a-prebuilt-website/\">Avada Cleaning Services: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s: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:146786:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-25 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-24 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-156\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/cleaning-services/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Cleaning Services</a>. This <a href=\"https://bit.ly/3r2Zdii\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Cleaning Services can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/cleaning-services/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Cleaning Services</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-mechanic-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Mechanic</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/3r2Zdii\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-16 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-13 .fusion-button-text, .fusion-button.button-13 i {color:#fff;}.fusion-button.button-13 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-13:hover .fusion-button-text, .fusion-button.button-13:hover i,.fusion-button.button-13:focus .fusion-button-text, .fusion-button.button-13:focus i,.fusion-button.button-13:active .fusion-button-text, .fusion-button.button-13:active{color:#fff;}.fusion-button.button-13:hover .fusion-button-icon-divider, .fusion-button.button-13:hover .fusion-button-icon-divider, .fusion-button.button-13:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-13:hover, .fusion-button.button-13:focus, .fusion-button.button-13:active{border-color:#fff;}.fusion-button.button-13 {border-color:#fff;border-radius:2px;}.fusion-button.button-13{background: #f86635;}.fusion-button.button-13:hover,.button-13:focus,.fusion-button.button-13:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-13 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/cleaning-services/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-16{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-16 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-16{width:100% !important;order : 0;}.fusion-builder-nested-column-16 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-16{width:100% !important;order : 0;}.fusion-builder-nested-column-16 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-17 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-14 .fusion-button-text, .fusion-button.button-14 i {color:#fff;}.fusion-button.button-14 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-14:hover .fusion-button-text, .fusion-button.button-14:hover i,.fusion-button.button-14:focus .fusion-button-text, .fusion-button.button-14:focus i,.fusion-button.button-14:active .fusion-button-text, .fusion-button.button-14:active{color:#fff;}.fusion-button.button-14:hover .fusion-button-icon-divider, .fusion-button.button-14:hover .fusion-button-icon-divider, .fusion-button.button-14:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-14:hover, .fusion-button.button-14:focus, .fusion-button.button-14:active{border-color:#fff;}.fusion-button.button-14 {border-color:#fff;border-radius:2px;}.fusion-button.button-14{background: #f86635;}.fusion-button.button-14:hover,.button-14:focus,.fusion-button.button-14:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-14 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3r2Zdii\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-17{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-17 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-17{width:100% !important;order : 0;}.fusion-builder-nested-column-17 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-17{width:100% !important;order : 0;}.fusion-builder-nested-column-17 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-157{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-157 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-43\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-158{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-158 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-157\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-159{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-159 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-158\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-160{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-160 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-159\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/3r2Zdii\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-68 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-160\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-44\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-161{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-161 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-161\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-69 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-162\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/3r2Zdii\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-162{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-162 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-163\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-70 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"Critical CSS\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1180\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-867029\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x128.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x255.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x383.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x510.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x765.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-164\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-163{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-163 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-165\"><p>Even with all of the performance options provided, Avada plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://bit.ly/3r2Zdii\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-45\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-164{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-164 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#0a9695;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#0a9695\">#0a9695</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#112034;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#112034\">#112034</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#ffffff;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#0a9695;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#0a9695\">#0a9695</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#112034;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#112034\">#112034</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffffff;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#0a9695;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#0a9695\">#0a9695</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#112034;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#112034\">#112034</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffffff;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-text fusion-text-166\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/cleaning-services/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Cleaning Services</a> prebuilt website is a warm set of pastel colors, as seen above. If you would like to change the Avada Cleaning Services color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-165{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-165 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-167\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/3r2Zdii\" target=\"_blank\" rel=\"noopener noreferrer\">Avada </a>website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/cleaning-services/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Cleaning Services</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-18 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-166{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-166 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-167{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-167 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: \'Red Hat Display\'; font-weight: 500;\" data-fusion-font=\"true\" data-fusion-google-font=\"Red Hat Display\" data-fusion-google-variant=\"500\">Red Hat Display</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-168{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-168 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3 Font Family: <span style=\"font-family: \'Red Hat Display\'; font-weight: 500;\" data-fusion-font=\"true\" data-fusion-google-font=\"Red Hat Display\" data-fusion-google-variant=\"500\">Red Hat Display</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-169{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-169 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H4 Font Family: <span style=\"font-family: Roboto; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Roboto\" data-fusion-google-variant=\"400\">Roboto</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-170{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-170 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5, H6 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: Roboto; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Roboto\" data-fusion-google-variant=\"400\">Roboto</span><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-18{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-18 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-18{width:100% !important;order : 0;}.fusion-builder-nested-column-18 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-18{width:100% !important;order : 0;}.fusion-builder-nested-column-18 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-19 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-171{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-171 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-172{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-172 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: Roboto; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Roboto\" data-fusion-google-variant=\"400\">Roboto</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-19{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-19 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-19{width:100% !important;order : 0;}.fusion-builder-nested-column-19 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-19{width:100% !important;order : 0;}.fusion-builder-nested-column-19 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-168\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-173{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-173 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-169\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-46\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>The <a href=\"https://bit.ly/3r2Zdii\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-174{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-174 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-170\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/cleaning-services/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Cleaning Services</a> prebuilt website as an example: This prebuilt website was built without using any of the Avada bundled plugins.</p>\n<p>When an Avada prebuilt website is built without using bundled plugins, you can still install and activate any of them, should it be needed for your website. Any Avada prebuilt website can be modified to fit your project needs.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-175{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-175 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-171\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-47\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-envelope-open-text fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-register-for-avada-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Register for Avada support</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comments fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/support/submit-a-ticket/\" target=\"_blank\" rel=\"noopener noreferrer\">Need to submit a support ticket?</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cart-arrow-down fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/extending-and-renewing-envato-item-support/\" target=\"_blank\" rel=\"noopener noreferrer\">How to extend or renew support</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-question fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/avada-grandfathered-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Are you eligible for Grandfathered support?</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-columns fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-use-the-avada-support-desk/\" target=\"_blank\" rel=\"noopener noreferrer\">How to use the Avada support Dashboard</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-alt fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Documentation</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-video fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://www.youtube.com/c/ThemeFusionVideos/videos\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Video Tutorials</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-176{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-176 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-172\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type. </p>\n<p><a href=\"https://bit.ly/3r2Zdii\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website. </p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-48\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">They are created to save you time when building a new website.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A prebuilt website can be imported with a few clicks.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is mobile and SEO friendly.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">You can white-label any prebuilt website for client work.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Prebuilt websites are included with your <a href=\"https://bit.ly/3r2Zdii\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-177{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-177 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-173\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">83</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-71 hover-type-none\"><img width=\"1100\" height=\"420\" alt=\"One click install\" title=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-24{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-24 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-24{width:100% !important;order : 0;}.fusion-builder-column-24 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-24{width:100% !important;order : 0;}.fusion-builder-column-24 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-25{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-26 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-25 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-178{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-178 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-174\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/cleaning-services/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Cleaning Services</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-49\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/cleaning-services/\" target=\"_blank\" rel=\"noopener noreferrer\">One Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"http://localhost/Avada/cleaning-services/#home\" target=\"_blank\" rel=\"noopener noreferrer\">#Home &#8211; Page Section</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"http://localhost/Avada/cleaning-services/#about\" target=\"_blank\" rel=\"noopener noreferrer\">#About Us &#8211; Page Section</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"http://localhost/Avada/cleaning-services/#services\" target=\"_blank\" rel=\"noopener noreferrer\"># Services &#8211; Page Section</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"http://localhost/Avada/cleaning-services/#team\" target=\"_blank\" rel=\"noopener noreferrer\"># Our Team &#8211; Page Section</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"http://localhost/Avada/cleaning-services/#contact\" target=\"_blank\" rel=\"noopener noreferrer\"># Contact &#8211; Page Section</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-25{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-25 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-25{width:100% !important;order : 0;}.fusion-builder-column-25 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-25{width:100% !important;order : 0;}.fusion-builder-column-25 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-26{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-27 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-26 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-179{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-179 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-175\"><p>Before we look at the specific Layouts on the Avada Cleaning Services prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-72 hover-type-none\"><img width=\"1817\" height=\"3407\" alt=\"Layout Sections\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x375.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x750.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x1125.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x1500.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-1200x2250.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1817w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-180{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-180 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-176\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-181{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-181 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-177\"><p>The <a href=\"https://avada.theme-fusion.com/cleaning-services/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Cleaning Services</a> prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-73 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Live-Editing-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[1a37f7dec9287312073]\" data-title=\"Avada Cleaning Services Live Editing 2\" title=\"Avada Cleaning Services Live Editing 2\"><img width=\"1920\" height=\"934\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Live-Editing-2.jpg\" class=\"img-responsive wp-image-867047\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Live-Editing-2-200x97.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Live-Editing-2-400x195.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Live-Editing-2-600x292.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Live-Editing-2-800x389.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Live-Editing-2-1200x584.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Live-Editing-2.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-178\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-74 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Backend-Editing-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[96723422d4315f2f48c]\" data-title=\"Avada Cleaning Services Backend Editing 2\" title=\"Avada Cleaning Services Backend Editing 2\"><img width=\"1903\" height=\"882\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Backend-Editing-2.jpg\" class=\"img-responsive wp-image-867048\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Backend-Editing-2-200x93.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Backend-Editing-2-400x185.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Backend-Editing-2-600x278.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Backend-Editing-2-800x371.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Backend-Editing-2-1200x556.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Backend-Editing-2.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-182{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-182 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-179\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-50\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-26{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-26 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-26{width:100% !important;order : 0;}.fusion-builder-column-26 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-26{width:100% !important;order : 0;}.fusion-builder-column-26 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-27{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-28 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-27 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-183{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-183 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-180\"><p>If you type the base-level domain name of any particular website into the browser, you will, by default, arrive on the website&#8217;s homepage. The homepage serves as a vital landing page for your visitors by capturing their attention and letting them know what the website is all about. There is the conjectured &#8220;5 Second Rule&#8221; for Web Usability and how it translates the user reaction when landing on the site for the first time into either a positive or negative experience.</p>\n<p>For well over a decade, the main focus for web designers was to showcase style over function for the most part. As time has passed, <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">above the fold</a> content delivery and the impact on <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a> has shifted the focus over to mobile vs. desktop speed and <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>.</p>\n<p>Each of the Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">Prebuilt Websites</a> are meticulously designed with the ideal balance between style and function, and we use the Avada <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> to provide improved results.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-184{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-184 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-181\"><p>For the <a href=\"https://avada.theme-fusion.com/cleaning-services/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Cleaning Services</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Header-Backend.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-75 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Header2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[45132c0e289b482c686]\" data-title=\"Avada-Cleaning-Services-Header2\" title=\"Avada-Cleaning-Services-Header2\"><img width=\"1900\" height=\"1079\" alt=\"Avada Cleaning Services Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Header2.jpg\" class=\"img-responsive wp-image-867049\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Header2-200x114.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Header2-400x227.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Header2-600x341.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Header2-800x454.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Header2-1200x681.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Header2.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-185{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-185 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-182\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-51\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-27{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-27 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-27{width:100% !important;order : 0;}.fusion-builder-column-27 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-27{width:100% !important;order : 0;}.fusion-builder-column-27 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-28{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-29 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-28 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-186{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-186 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-76 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Hero-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[8ed41a862d378239257]\" data-title=\"Avada Cleaning Services Hero 2\" title=\"Avada Cleaning Services Hero 2\"><img width=\"1901\" height=\"900\" alt=\"Avada Cleaning Services Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Hero-2.jpg\" class=\"img-responsive wp-image-867050\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Hero-2-200x95.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Hero-2-400x189.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Hero-2-600x284.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Hero-2-800x379.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Hero-2-1200x568.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Hero-2.jpg 1901w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-183\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. Added to the container are two 1/4 (25% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>and one 1/2 (50% width) Column in the first row, with two <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Column Elements</a>, each structured with one 1/5 (20% width) Column and one 4/5 (80% width) Column, holding an <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n<p>In the second row, you will find a single 1/1 (100% width) Column with a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, followed by one 4/5 (80% width) Column containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a Separator Element, and a Nested Columns Element. Simply put, Nested Columns are Columns within Columns. Inside these Nested Columns, you will find one 2/3 (66.67% width) Column and one 1/3 (33.33% width) Column using a Text Block Element.</p>\n<p>The last two rows consist of two 1/1 (100% width) Columns, with the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Element</a> and a Separator Element. The <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-form-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Builder</a> is used to design and build this callback form. The Form Builder is very flexible and allows you to create many types of forms that you can use on your Avada website. For any form that you create, you can add them to a page or post as a single instance or you can set the form to display <a href=\"https://theme-fusion.com/documentation/avada/forms/avada-forms-global-options/\" target=\"_blank\" rel=\"noopener noreferrer\">globally </a>across the website, which then allows you to manage one form. If a form is showing on all pages, for example, and you edit the form, the same changes show across all form instances.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-187{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-187 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">More Information CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-77 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-more-info-cta-compressed.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2caff1bbe68854c9187]\" data-title=\"More Info CTA\" title=\"More Info CTA\"><img width=\"1920\" height=\"841\" alt=\"Avada Cleaning Services More Info CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-more-info-cta-compressed.jpg\" class=\"img-responsive wp-image-868232\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-more-info-cta-compressed-200x88.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-more-info-cta-compressed-400x175.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-more-info-cta-compressed-600x263.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-more-info-cta-compressed-800x350.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-more-info-cta-compressed-1200x526.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-more-info-cta-compressed.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-184\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This section was built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with three 1/3 (33.33% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, each containing two <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Elements</a>, collectively holding six 1/1 (100% width) Columns, with three <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Elements</a> and three <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-188{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-188 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">About</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-78 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-About.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[1230d9d477cb4e23acc]\" data-title=\"Avada Cleaning Services About\" title=\"Avada Cleaning Services About\"><img width=\"1901\" height=\"825\" alt=\"Avada Cleaning Services About\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-About.jpg\" class=\"img-responsive wp-image-866824\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-About-200x87.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-About-400x174.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-About-600x260.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-About-800x347.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-About-1200x521.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-About.jpg 1901w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-185\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, using a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>. This is followed on by another row of two 1/2 (50% width) Columns, structured with two <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Elements</a> each. The Nested Columns collectively hold four 1/1 (100% width) Columns with two <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, two Title Elements, and two Text Block Elements.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-189{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-189 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Service Boxes &#8211; Visual CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-79 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-1-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[3d17edf7e82e851d314]\" data-title=\"Avada Cleaning Services Services Box CTA 1 2\" title=\"Avada Cleaning Services Services Box CTA 1 2\"><img width=\"1901\" height=\"663\" alt=\"Avada Cleaning Services Service Boxes Visual CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-1-2.jpg\" class=\"img-responsive wp-image-867054\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-1-2-200x70.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-1-2-400x140.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-1-2-600x209.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-1-2-800x279.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-1-2-1200x419.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-1-2.jpg 1901w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-186\"><p>Using images as a way to highlight a call-to-action or for advertizing and promotion reasons is standard practice, and the Avada Website Builder makes this task even easier for you. To create this section, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>is added to the page content which has an image selected as the background. Here you will find two 1/2 (50% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>holding two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-190{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-190 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Service Boxes &#8211; Visual CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-80 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-2-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[7a94b3ef6f4bb998dc6]\" data-title=\"Avada Cleaning Services Services Box CTA 2 2\" title=\"Avada Cleaning Services Services Box CTA 2 2\"><img width=\"1899\" height=\"662\" alt=\"Avada Cleaning Services Service Boxes Visual CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-2-2.jpg\" class=\"img-responsive wp-image-867055\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-2-2-200x70.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-2-2-400x139.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-2-2-600x209.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-2-2-800x279.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-2-2-1200x418.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-Box-CTA-2-2.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-187\"><p>To create this layout, the structure is similar to the previous section, using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>is added to the page content which has an image selected as the background. Here you will find two 1/2 (50% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>holding two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n<p>Depending on the marketing goal, CTA&#8217;s can drive a variety of different actions and results for your website visitors. Check this article for some CTA inspiration, <a href=\"https://blog.hubspot.com/marketing/call-to-action-examples\" target=\"_blank\" rel=\"noopener noreferrer\">39 Call-to-Action Examples You Can&#8217;t Help But Click</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-191{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-191 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Services</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-81 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[4fe08883ae030daba8c]\" data-title=\"Avada Cleaning Services Services 2\" title=\"Avada Cleaning Services Services 2\"><img width=\"1887\" height=\"2211\" alt=\"Avada Cleaning Services Services\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-2.jpg\" class=\"img-responsive wp-image-867056\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-2-200x234.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-2-400x469.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-2-600x703.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-2-800x937.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-2-1200x1406.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Services-2.jpg 1887w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-188\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Gradient was used with six 1/2 (50% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>and two 1/1 (100% width) Columns. These Columns are structure with a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a> and eight <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Elements</a>. The Nested Columns collectively holding eight 1/1 (100% width) Columns with four <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Elements</a>, four <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Elements</a>, four Image Elements, and four Text Block Elements.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-192{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-192 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Visual CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-82 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Banner-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[330dd028cc1157ca32b]\" data-title=\"Avada Cleaning Services Banner 2\" title=\"Avada Cleaning Services Banner 2\"><img width=\"1899\" height=\"762\" alt=\"Avada Cleaning Services Visual CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Banner-2.jpg\" class=\"img-responsive wp-image-867057\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Banner-2-200x80.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Banner-2-400x161.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Banner-2-600x241.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Banner-2-800x321.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Banner-2-1200x482.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Banner-2.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-189\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, the CTA section is made up of a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image and two 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/section-separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Section Separator Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a<a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\"> Separator Element</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-193{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-193 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Staff</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-83 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Staff-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2f43806375acd978845]\" data-title=\"Avada Cleaning Services Staff 2\" title=\"Avada Cleaning Services Staff 2\"><img width=\"1903\" height=\"1641\" alt=\"Avada Cleaning Services Staff\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Staff-2.jpg\" class=\"img-responsive wp-image-867059\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Staff-2-200x172.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Staff-2-400x345.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Staff-2-600x517.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Staff-2-800x690.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Staff-2-1200x1035.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Staff-2.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-190\"><p>To create this section, two <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>Elements are structured using two 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>with a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a> using two 1/2 (50% width) Columns with a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>. This is followed by four 1/2 (50% width) Columns using eight Nested Columns Element, collectively holding four<a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\"> Image Element</a>, four Title Element, four Text Block element, and four <a href=\"https://theme-fusion.com/documentation/avada/elements/social-links-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Social Links Elements</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-194{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-194 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Badges</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-84 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Badges-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[8c7c023ab2b743f8412]\" data-title=\"Avada Cleaning Services Badges 2\" title=\"Avada Cleaning Services Badges 2\"><img width=\"1899\" height=\"592\" alt=\"Avada Cleaning Services Badges\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Badges-2.jpg\" class=\"img-responsive wp-image-867060\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Badges-2-200x62.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Badges-2-400x125.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Badges-2-600x187.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Badges-2-800x249.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Badges-2-1200x374.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Badges-2.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-191\"><p>This section is built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>using a <a href=\"https://theme-fusion.com/documentation/avada/elements/section-separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Section Separator Element</a> and three 1/3 (33.33% width) Columns, each holding an <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-195{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-195 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Contact Us &#8211; Form</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-85 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Contact-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[f3891109a005c0dd466]\" data-title=\"Avada Cleaning Services Contact 2\" title=\"Avada Cleaning Services Contact 2\"><img width=\"1899\" height=\"1122\" alt=\"Avada Cleaning Services Contact Form\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Contact-2.jpg\" class=\"img-responsive wp-image-867061\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Contact-2-200x118.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Contact-2-400x236.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Contact-2-600x355.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Contact-2-800x473.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Contact-2-1200x709.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Contact-2.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-192\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image and two 1/2 (50% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns elements</a>, with two 1/1 (100% width) Columns, structured with two Text Block Element.</p>\n<p>This is followed by a 3/4 (75% width) Column with the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Element</a>, a 1/4 (25% width) Column, and a 1/1 (100% width) Column holding a Separator Element.</p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-28{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-28 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-28{width:100% !important;order : 0;}.fusion-builder-column-28 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-28{width:100% !important;order : 0;}.fusion-builder-column-28 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-29{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-30 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-29 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-196{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-196 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-193\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-52\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#0a9695;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-194\"><p>For the <a href=\"https://avada.theme-fusion.com/cleaning-services/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Cleaning Services</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-197{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-197 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-86 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-footer-1920x174.png\" class=\"fusion-lightbox\" data-rel=\"iLightbox[377707adcf38613f4b5]\" data-title=\"Cleaning Services Footer\" title=\"Cleaning Services Footer\"><img width=\"1920\" height=\"174\" alt=\"Avada Cleaning Services Footer Content\" src=\"https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-footer-1920x174.png\" class=\"img-responsive wp-image-868229\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-footer-200x18.png 200w, https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-footer-400x36.png 400w, https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-footer-600x54.png 600w, https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-footer-800x73.png 800w, https://theme-fusion.com/wp-content/uploads/2021/07/cleaning-services-footer-1200x109.png 1200w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-195\"><p>There is a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> and one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, with the use of a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a> using <a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website copyright information. You can check how this is structured on the backend clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Cleaning-Services-Footer-Backend.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-198{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-198 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-196\"><p>There are <span class=\"fusion-cs-live-demos\">83</span> <a href=\"https://bit.ly/3r2Zdii\" target=\"_blank\" rel=\"noopener noreferrer\">Avada </a>prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/2NccgzM\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-15 .fusion-button-text, .fusion-button.button-15 i {color:#fff;}.fusion-button.button-15 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-15:hover .fusion-button-text, .fusion-button.button-15:hover i,.fusion-button.button-15:focus .fusion-button-text, .fusion-button.button-15:focus i,.fusion-button.button-15:active .fusion-button-text, .fusion-button.button-15:active{color:#fff;}.fusion-button.button-15:hover .fusion-button-icon-divider, .fusion-button.button-15:hover .fusion-button-icon-divider, .fusion-button.button-15:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-15:hover, .fusion-button.button-15:focus, .fusion-button.button-15:active{border-color:#fff;}.fusion-button.button-15 {border-color:#fff;border-radius:2px;}.fusion-button.button-15{background: #f86635;}.fusion-button.button-15:hover,.button-15:focus,.fusion-button.button-15:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-15 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3r2Zdii\"><span class=\"fusion-button-text\">Buy Avada Cleaning Services For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-29{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-29 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-29{width:100% !important;order : 0;}.fusion-builder-column-29 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-29{width:100% !important;order : 0;}.fusion-builder-column-29 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-30{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-cleaning-services-deconstructing-a-prebuilt-website/\">Avada Cleaning Services: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://theme-fusion.com/avada-cleaning-services-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:85:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Avada Mechanic: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://theme-fusion.com/avada-mechanic-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://theme-fusion.com/avada-mechanic-deconstructing-a-prebuilt-website/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Jun 2021 17:40: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:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";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:5:\"Avada\";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:\"Beginners Guide\";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:10:\"Web Design\";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:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"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://theme-fusion.com/?p=867650\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:617:\"<p>Say hello to Avada Mechanic. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Mechanic can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-mechanic-deconstructing-a-prebuilt-website/\">Avada Mechanic: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s: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:136919:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-31 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-30 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-197\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Mechanic</a>. This <a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Mechanic can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Mechanic</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-videographer-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Videographer</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-20 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-16 .fusion-button-text, .fusion-button.button-16 i {color:#fff;}.fusion-button.button-16 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-16:hover .fusion-button-text, .fusion-button.button-16:hover i,.fusion-button.button-16:focus .fusion-button-text, .fusion-button.button-16:focus i,.fusion-button.button-16:active .fusion-button-text, .fusion-button.button-16:active{color:#fff;}.fusion-button.button-16:hover .fusion-button-icon-divider, .fusion-button.button-16:hover .fusion-button-icon-divider, .fusion-button.button-16:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-16:hover, .fusion-button.button-16:focus, .fusion-button.button-16:active{border-color:#fff;}.fusion-button.button-16 {border-color:#fff;border-radius:2px;}.fusion-button.button-16{background: #f86635;}.fusion-button.button-16:hover,.button-16:focus,.fusion-button.button-16:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-16 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/mechanic/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-20{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-20 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-20{width:100% !important;order : 0;}.fusion-builder-nested-column-20 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-20{width:100% !important;order : 0;}.fusion-builder-nested-column-20 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-21 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-17 .fusion-button-text, .fusion-button.button-17 i {color:#fff;}.fusion-button.button-17 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-17:hover .fusion-button-text, .fusion-button.button-17:hover i,.fusion-button.button-17:focus .fusion-button-text, .fusion-button.button-17:focus i,.fusion-button.button-17:active .fusion-button-text, .fusion-button.button-17:active{color:#fff;}.fusion-button.button-17:hover .fusion-button-icon-divider, .fusion-button.button-17:hover .fusion-button-icon-divider, .fusion-button.button-17:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-17:hover, .fusion-button.button-17:focus, .fusion-button.button-17:active{border-color:#fff;}.fusion-button.button-17 {border-color:#fff;border-radius:2px;}.fusion-button.button-17{background: #f86635;}.fusion-button.button-17:hover,.button-17:focus,.fusion-button.button-17:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-17 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3gCfqYB\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-21{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-21 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-21{width:100% !important;order : 0;}.fusion-builder-nested-column-21 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-21{width:100% !important;order : 0;}.fusion-builder-nested-column-21 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-199{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-199 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-53\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-200{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-200 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-198\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-201{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-201 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-199\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-202{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-202 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-200\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-87 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-201\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-54\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-203{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-203 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-202\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-88 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-203\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-204{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-204 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-204\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-89 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"Critical CSS\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1180\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-867029\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x128.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x255.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x383.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x510.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x765.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-205\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-205{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-205 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-206\"><p>Even with all of the performance options provided, Avada plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-55\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-206{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-206 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#013cae;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#013cae\">#013cae</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#ffdc4b;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffdc4b\">#ffdc4b</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#ffffff;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#013cae;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#013cae\">#013cae</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffdc4b;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffdc4b\">#ffdc4b</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffffff;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#013cae;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#013cae\">#013cae</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffdc4b;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffdc4b\">#ffdc4b</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffffff;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-text fusion-text-207\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Mechanic</a> prebuilt website is a spontaneous grouping, as seen above. If you would like to change the Avada Mechanic color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-207{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-207 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-208\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\">Avada </a>website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Mechanic</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-22 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-208{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-208 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-209{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-209 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: Epilogue; font-weight: 600;\" data-fusion-font=\"true\" data-fusion-google-font=\"Epilogue\" data-fusion-google-variant=\"600\">Epilogue</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-210{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-210 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3,H4 Font Family: <span style=\"font-family: Epilogue; font-weight: 600;\" data-fusion-font=\"true\" data-fusion-google-font=\"Epilogue\" data-fusion-google-variant=\"600\">Epilogue</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-211{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-211 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5, H6 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: Epilogue; font-weight: 600;\" data-fusion-font=\"true\" data-fusion-google-font=\"Epilogue\" data-fusion-google-variant=\"600\">Epilogue</span><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-22{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-22 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-22{width:100% !important;order : 0;}.fusion-builder-nested-column-22 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-22{width:100% !important;order : 0;}.fusion-builder-nested-column-22 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-23 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-212{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-212 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-213{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-213 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: Epilogue; font-weight: 500;\" data-fusion-font=\"true\" data-fusion-google-font=\"Epilogue\" data-fusion-google-variant=\"500\">Epilogue</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-23{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-23 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-23{width:100% !important;order : 0;}.fusion-builder-nested-column-23 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-23{width:100% !important;order : 0;}.fusion-builder-nested-column-23 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-209\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-214{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-214 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-210\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-56\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">The <a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-215{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-215 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-211\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Mechanic</a> prebuilt website as an example: This prebuilt website was built without using any of the Avada bundled plugins.</p>\n<p>When an Avada prebuilt website is built without using bundled plugins, you can still install and activate any of them, should it be needed for your website. Any Avada prebuilt website can be modified to fit your project needs.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-216{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-216 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-212\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-57\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-envelope-open-text fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-register-for-avada-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Register for Avada support</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comments fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/support/submit-a-ticket/\" target=\"_blank\" rel=\"noopener noreferrer\">Need to submit a support ticket?</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cart-arrow-down fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/extending-and-renewing-envato-item-support/\" target=\"_blank\" rel=\"noopener noreferrer\">How to extend or renew support</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-question fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/avada-grandfathered-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Are you eligible for Grandfathered support?</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-columns fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-use-the-avada-support-desk/\" target=\"_blank\" rel=\"noopener noreferrer\">How to use the Avada support Dashboard</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-alt fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Documentation</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-video fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://www.youtube.com/c/ThemeFusionVideos/videos\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Video Tutorials</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-217{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-217 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-213\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type. </p>\n<p><a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website. </p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-58\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">They are created to save you time when building a new website.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A prebuilt website can be imported with a few clicks.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is mobile and SEO friendly.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">You can white-label any prebuilt website for client work.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Prebuilt websites are included with your <a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-218{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-218 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-214\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">83</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-90 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-30{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-30 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-30{width:100% !important;order : 0;}.fusion-builder-column-30 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-30{width:100% !important;order : 0;}.fusion-builder-column-30 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-31{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-32 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-31 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-219{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-219 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-215\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Mechanic</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-59\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Home Page &#8211; Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/mechanic/about-us/\" target=\"_blank\" rel=\"noopener noreferrer\">About Us &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/mechanic/f-a-q/\" target=\"_blank\" rel=\"noopener noreferrer\">F.A.Q &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/mechanic/our-team/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Team &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/mechanic/our-services/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Services &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/mechanic/mechanical-engineering/\" target=\"_blank\" rel=\"noopener noreferrer\">Mechanical Engineering &#8211; page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/mechanic/general-mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">General Mechanic &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/mechanic/maintenance-mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Maintenance Mechanic &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/mechanic/car-mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Car Mechanic &#8211; Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://avada.theme-fusion.com/mechanic/contact/\" target=\"_blank\" rel=\"noopener noreferrer\">Contact &#8211; Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-31{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-31 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-31{width:100% !important;order : 0;}.fusion-builder-column-31 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-31{width:100% !important;order : 0;}.fusion-builder-column-31 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-32{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-33 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-32 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-220{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-220 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-216\"><p>Before we look at the specific Layouts on the Avada Mechanic prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-91 hover-type-none\"><img width=\"1817\" height=\"3407\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x375.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x750.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x1125.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x1500.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-1200x2250.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1817w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-221{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-221 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-217\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-222{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-222 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-218\"><p>The <a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada </a><a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Mechanic </a>prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-92 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Live-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[10278e3470dfedbc590]\" data-title=\"Avada Mechanic Live Editing\" title=\"Avada Mechanic Live Editing\"><img width=\"1919\" height=\"875\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Live-Editing.jpg\" class=\"img-responsive wp-image-867685\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Live-Editing-200x91.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Live-Editing-400x182.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Live-Editing-600x274.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Live-Editing-800x365.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Live-Editing-1200x547.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Live-Editing.jpg 1919w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-219\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-93 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[02e90a13a6b6c080938]\" data-title=\"Avada Mechanic Backend Editing\" title=\"Avada Mechanic Backend Editing\"><img width=\"1905\" height=\"803\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Backend-Editing.jpg\" class=\"img-responsive wp-image-867686\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Backend-Editing-200x84.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Backend-Editing-400x169.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Backend-Editing-600x253.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Backend-Editing-800x337.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Backend-Editing-1200x506.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Backend-Editing.jpg 1905w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-223{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-223 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-220\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-60\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-32{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-32 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-32{width:100% !important;order : 0;}.fusion-builder-column-32 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-32{width:100% !important;order : 0;}.fusion-builder-column-32 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-33{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-34 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-33 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-224{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-224 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-221\"><p>If you type the base-level domain name of any particular website into the browser, you will, by default, arrive on the website&#8217;s homepage. The homepage serves as a vital landing page for your visitors by capturing their attention and letting them know what the website is all about. There is the conjectured &#8220;5 Second Rule&#8221; for Web Usability and how it translates the user reaction when landing on the site for the first time into either a positive or negative experience.</p>\n<p>For well over a decade, the main focus for web designers was to showcase style over function for the most part. As time has passed, <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">above the fold</a> content delivery and the impact on <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a> has shifted the focus over to mobile vs. desktop speed and <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>.</p>\n<p>Each of the Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">Prebuilt Websites</a> are meticulously designed with the ideal balance between style and function, and we use the Avada <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> to provide improved results.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-225{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-225 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-222\"><p>For the <a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Mechanic</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Global-Header.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-94 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2986aedeb721d71b69c]\" data-title=\"Avada Mechanic header\" title=\"Avada Mechanic header\"><img width=\"1897\" height=\"147\" alt=\"Avada Mechanic Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-header.jpg\" class=\"img-responsive wp-image-867687\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-header-200x15.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-header-400x31.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-header-600x46.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-header-800x62.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-header-1200x93.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-header.jpg 1897w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-226{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-226 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-223\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-61\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-33{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-33 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-33{width:100% !important;order : 0;}.fusion-builder-column-33 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-33{width:100% !important;order : 0;}.fusion-builder-column-33 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-34{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-35 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-34 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-227{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-227 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-95 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[0d6b2f0f754fbfeda3c]\" data-title=\"Avada Mechanic hero\" title=\"Avada Mechanic hero\"><img width=\"1896\" height=\"810\" alt=\"Avada Mechanic Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-hero.jpg\" class=\"img-responsive wp-image-867688\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-hero-200x85.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-hero-400x171.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-hero-600x256.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-hero-800x342.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-hero-1200x513.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-hero.jpg 1896w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-224\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a>. Added to the container are two 55% width <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>and one 45% width Column in. <span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\"> This is structured with an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a> with a single 1/1 (100% width) Column with the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Forms Element</a>.</span></p>\n<p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">The </span><a style=\"background-color: rgba(255, 255, 255, 0); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\" href=\"https://avada.theme-fusion.com/website-builder-features/avada-form-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Builder</a><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\"> is used to design and build this callback form. The Form Builder is very flexible and allows you to create many types of forms that you can use on your Avada website. For any form that you create, you can add them to a page or post as a single instance or you can set the form to display </span><a style=\"background-color: rgba(255, 255, 255, 0); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\" href=\"https://theme-fusion.com/documentation/avada/forms/avada-forms-global-options/\" target=\"_blank\" rel=\"noopener noreferrer\">globally </a><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">across the website, which then allows you to manage one form. If a form is showing on all pages, for example, and you edit the form, the same changes show across all form instances.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-228{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-228 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Information Boxes</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-96 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Info-Boxes.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[f03c9e5cf774348f315]\" data-title=\"Avada Mechanic Info Boxes\" title=\"Avada Mechanic Info Boxes\"><img width=\"1897\" height=\"522\" alt=\"Avada Mechanic Information Boxes\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Info-Boxes.jpg\" class=\"img-responsive wp-image-867690\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Info-Boxes-200x55.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Info-Boxes-400x110.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Info-Boxes-600x165.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Info-Boxes-800x220.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Info-Boxes-1200x330.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Info-Boxes.jpg 1897w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-225\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This section was built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 30% width and two 35% width <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, with the Left Column holding two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>. The Middle and Right Column are both structured with an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a> and a Title Element.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-229{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-229 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">FAQ</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-97 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-FAQ.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[65b53274c4fb92b9c47]\" data-title=\"Avada Mechanic FAQ\" title=\"Avada Mechanic FAQ\"><img width=\"1902\" height=\"896\" alt=\"Avada Mechanic FAQ\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-FAQ.jpg\" class=\"img-responsive wp-image-867692\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-FAQ-200x94.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-FAQ-400x188.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-FAQ-600x283.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-FAQ-800x377.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-FAQ-1200x565.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-FAQ.jpg 1902w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-226\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image and three rows of <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>. The first row consists of one 45% width Column containing a Background Image and one 55% Column containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a> with an Underline Highlight Effect, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a FAQ Element.</p>\n<p>The second row contains a single 1/1 (100% width) Column with a Separator Element and the third row consists of four 21% width Columns, each containing a Title Element and a Text Block Element.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-230{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-230 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">More Information</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-98 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[612c98b7d5076fdcc02]\" data-title=\"Avada Mechanic Boxes\" title=\"Avada Mechanic Boxes\"><img width=\"1904\" height=\"373\" alt=\"Avada Mechanic More Information\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes.jpg\" class=\"img-responsive wp-image-867694\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes-200x39.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes-400x78.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes-600x118.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes-800x157.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes-1200x235.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes.jpg 1904w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-227\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with three 1/3 (33.33% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, each containing an <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-231{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-231 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Visual CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-99 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Banner.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[96c713c92b3d1213a74]\" data-title=\"Avada Mechanic Banner\" title=\"Avada Mechanic Banner\"><img width=\"1901\" height=\"641\" alt=\"Avada Mechanic Visual CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Banner.jpg\" class=\"img-responsive wp-image-867695\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Banner-200x67.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Banner-400x135.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Banner-600x202.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Banner-800x270.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Banner-1200x405.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Banner.jpg 1901w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-228\"><p>Using images as a way to highlight a call-to-action or for advertizing and promotion reasons is standard practice, and the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> makes this task even easier for you. To create this section, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container Element</a> with a Background Image is added to the page content. To create the inner section, one 3/5 (60% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a> were used. This is followed on by a second row of two 1/2 (50% width) Columns, with the Left Columns Containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a> and the Right Column Containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/checklist-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Checklist Element</a>.</p>\n<p>Depending on the marketing goal, CTA&#8217;s can drive a variety of different actions and results for your website visitors. Check this article for some CTA inspiration, <a href=\"https://blog.hubspot.com/marketing/call-to-action-examples\" target=\"_blank\" rel=\"noopener noreferrer\">39 Call-to-Action Examples You Can&#8217;t Help But Click</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-232{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-232 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Team Members</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-100 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Team-Members.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[0ea37eff51d144e930e]\" data-title=\"Avada Mechanic Team Members\" title=\"Avada Mechanic Team Members\"><img width=\"1902\" height=\"829\" alt=\"Avada Mechanic Team Members\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Team-Members.jpg\" class=\"img-responsive wp-image-867707\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Team-Members-200x87.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Team-Members-400x174.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Team-Members-600x262.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Team-Members-800x349.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Team-Members-1200x523.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Team-Members.jpg 1902w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-229\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with four rows of <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>. In the first row you will find one 1/1 (100% width Column with a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, followed by the second row consisting of four 1/4 (25% width) Columns, each containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/person-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Person Element</a>.</p>\n<p>The third row is another 1/1 (100% width) Column with a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, finishing the section off with a fourth row consisting of five 1/5 (20% width) Columns, each containing an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-233{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-233 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Service Information &#8211; CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-101 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes-Info.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2b58a3407a5f1061eab]\" data-title=\"Avada Mechanic Boxes Info\" title=\"Avada Mechanic Boxes Info\"><img width=\"1901\" height=\"766\" alt=\"Avada Mechanic Services CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes-Info.jpg\" class=\"img-responsive wp-image-867710\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes-Info-200x81.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes-Info-400x161.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes-Info-600x242.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes-Info-800x322.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes-Info-1200x484.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Boxes-Info.jpg 1901w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-230\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, the CTA section is made up of a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>and three 1/3 (33.33% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, each with a Background Image and a link target to redirect to a different page when clicked. The layout for each Column is structured with a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and two <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-34{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-34 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-34{width:100% !important;order : 0;}.fusion-builder-column-34 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-34{width:100% !important;order : 0;}.fusion-builder-column-34 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-35{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-36 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-35 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-234{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-234 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-231\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-62\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#013cae;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-232\"><p>For the <a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Mechanic</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-235{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-235 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-102 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[731fb863988503401f0]\" data-title=\"Avada Mechanic Footer\" title=\"Avada Mechanic Footer\"><img width=\"1896\" height=\"837\" alt=\"Avada Mechanic Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Footer.jpg\" class=\"img-responsive wp-image-867713\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Footer-200x88.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Footer-400x177.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Footer-600x265.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Footer-800x353.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Footer-1200x530.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Footer.jpg 1896w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-233\"><p>The Footer content is divided into two <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Containers</a>. The first Container has a 30% width <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with a Background Image and a Separator Element and a 70% width Column with a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. Simply put, Nested Columns are Columns with Columns and for this example, it is structured using one 3/5 (60% width) Column and a 2/5 (40% width) Column, collectively containing and <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/menu-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Menu Element</a> and the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Element</a>, with the use of <a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website information, in the second Container. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Mechanic-Global-Footer.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-236{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-236 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-234\"><p>There are <span class=\"fusion-cs-live-demos\">83</span> <a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style type=\"text/css\">.fusion-button.button-18 .fusion-button-text, .fusion-button.button-18 i {color:#fff;}.fusion-button.button-18 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-18:hover .fusion-button-text, .fusion-button.button-18:hover i,.fusion-button.button-18:focus .fusion-button-text, .fusion-button.button-18:focus i,.fusion-button.button-18:active .fusion-button-text, .fusion-button.button-18:active{color:#fff;}.fusion-button.button-18:hover .fusion-button-icon-divider, .fusion-button.button-18:hover .fusion-button-icon-divider, .fusion-button.button-18:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-18:hover, .fusion-button.button-18:focus, .fusion-button.button-18:active{border-color:#fff;}.fusion-button.button-18 {border-color:#fff;border-radius:2px;}.fusion-button.button-18{background: #f86635;}.fusion-button.button-18:hover,.button-18:focus,.fusion-button.button-18:active{background: #c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-18 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3gCfqYB\"><span class=\"fusion-button-text\">Buy Avada Mechanic For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-35{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-35 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-35{width:100% !important;order : 0;}.fusion-builder-column-35 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-35{width:100% !important;order : 0;}.fusion-builder-column-35 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-36{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-mechanic-deconstructing-a-prebuilt-website/\">Avada Mechanic: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://theme-fusion.com/avada-mechanic-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:82:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"10+ Best WordPress Lead Capture Plugins for WordPress Users in 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://theme-fusion.com/10-best-wordpress-lead-capture-plugins-for-wordpress-users-in-2021/\";s: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:100:\"https://theme-fusion.com/10-best-wordpress-lead-capture-plugins-for-wordpress-users-in-2021/#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:\"Fri, 18 Jun 2021 17:38: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"HubSpot\";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:9:\"Marketing\";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:12:\"Form 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=866680\";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:661:\"<p>Searching for the best WordPress lead capture plugin to help you grow your email lists and connect with more customers? While WordPress doesn\'t include any built-in features to capture leads beyond its user registration system, you can find dozens of useful plugins to help you capture leads in different ways and send them straight [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/10-best-wordpress-lead-capture-plugins-for-wordpress-users-in-2021/\">10+ Best WordPress Lead Capture Plugins for WordPress Users in 2021</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s: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:78488:\"<div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-37 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-36 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-235\"><p><span style=\"font-weight: 400;\">Searching for the best WordPress lead capture plugin to help you grow your email lists and connect with more customers?</span></p>\n<p><span style=\"font-weight: 400;\">While WordPress doesn&#8217;t include any built-in features to capture leads beyond its user registration system, you can find dozens of useful plugins to help you capture leads in different ways and send them straight to your preferred CRM, email marketing service, webinar tool, and more.</span></p>\n<p><span style=\"font-weight: 400;\">In this post, we&#8217;ve sifted through your options to end up with a curated list of 13+ of the best WordPress lead generation plugins.</span></p>\n<p><span style=\"font-weight: 400;\">All of these plugins let you create some type of lead capture form that integrates with popular services. Some help you create multiple forms spanning popups to inline forms, while others are focused on one specific form type, such as embedded forms or lead capture quizzes.</span></p>\n<p><span style=\"font-weight: 400;\">Overall, you should be able to find a great option for your needs no matter what your budget is and which features you&#8217;re looking for.</span></p>\n<p><span style=\"font-weight: 400;\">Let&#8217;s dive in!</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-237{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}.fusion-title.fusion-title-text.fusion-title-237 a{color:#111111}.fusion-title.fusion-title-text.fusion-title-237 a:hover{color:#65bc7b}</style><div class=\"fusion-title title fusion-title-237 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\"><a href=\"https://www.hubspot.com/partners/wordpress/plugins/woocommerce-by-makewebbetter\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">Hubspot</a></h2></div><div ><div class=\"imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-103\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://www.hubspot.com/partners/wordpress/plugins/woocommerce-by-makewebbetter\" target=\"_blank\" aria-label=\"Hubspot\" rel=\"noopener noreferrer\"><img width=\"1291\" height=\"418\" alt=\"HibSpot &amp; WooCommerce\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/hubspot-lead-generation.jpeg\" class=\"img-responsive wp-image-867771\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/hubspot-lead-generation-200x65.jpeg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/hubspot-lead-generation-400x130.jpeg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/hubspot-lead-generation-600x194.jpeg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/hubspot-lead-generation-800x259.jpeg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/hubspot-lead-generation-1200x389.jpeg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/hubspot-lead-generation.jpeg 1291w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-236\"><p><span style=\"font-weight: 400;\">HubSpot is an all-in-one CRM platform that can help you both capture leads and more effectively market or sell to them.</span></p>\n<p><span style=\"font-weight: 400;\">The core of the plugin is the free HubSpot CRM, which gives you a spot to store your leads, track their activity, segment them as needed, and more.</span></p>\n<p><span style=\"font-weight: 400;\">To capture leads, the HubSpot plugin gives you a drag-and-drop </span><a href=\"https://www.hubspot.com/products/marketing/web-forms\"><span style=\"font-weight: 400;\">form builder</span></a><span style=\"font-weight: 400;\"> to create custom forms, as well as a popup builder to display those forms anywhere on your site (</span><i><span style=\"font-weight: 400;\">in addition to embedding the forms directly in your content</span></i><span style=\"font-weight: 400;\">).</span></p>\n<p><span style=\"font-weight: 400;\">As an alternative to using forms for lead generation, the HubSpot plugin also includes a live chat feature that lets you generate leads using chatbots. For example, you can initiate a conversation with a customer using your chatbot and then save those details in the HubSpot CRM.</span></p>\n<p><span style=\"font-weight: 400;\">Once you have leads in your CRM, HubSpot can also help you engage them with a one-off or automated email marketing, marketing automation, and more.</span></p>\n</div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-238{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-238 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:36;line-height:1.32;\">Key Features</h3></div><ul class=\"fusion-checklist fusion-checklist-63\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Capture leads with forms, popups, live chat, and more.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Drag-and-drop form builder and popup builder to customize your designs.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Built-in CRM to store your leads and manage relationships.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Live chat feature, including support for chatbots to capture leads even when you&#8217;re not online.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Full-service email marketing to send one-off or automatic emails. It&#8217;s a complete </span><a href=\"https://www.hubspot.com/products/marketing/email/best/mailchimp-alternatives\"><span style=\"font-weight: 400;\">alternative to Mailchimp</span></a><span style=\"font-weight: 400;\"> and other email marketing services.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Marketing automation.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Website analytics and lead activity tracking.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><a href=\"https://www.hubspot.com/partners/wordpress/plugins/woocommerce-by-makewebbetter\"><span style=\"font-weight: 400;\">Dedicated WooCommerce integration plugin</span></a><span style=\"font-weight: 400;\"> to capture eCommerce leads and track shoppers&#8217; activity.</span></p>\n</div></li></ul><div class=\"fusion-text fusion-text-237\"><p><b>Price</b><span style=\"font-weight: 400;\">: The HubSpot WordPress plugin and CRM are free. There are optional upgrades to add more advanced marketing, sales, and service features.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-36{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-36 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-36{width:100% !important;order : 0;}.fusion-builder-column-36 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-36{width:100% !important;order : 0;}.fusion-builder-column-36 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-37 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-239{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}.fusion-title.fusion-title-text.fusion-title-239 a{color:#111111}.fusion-title.fusion-title-text.fusion-title-239 a:hover{color:#65bc7b}</style><div class=\"fusion-title title fusion-title-239 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\"><a href=\"https://avada.theme-fusion.com/website-builder-features/avada-form-builder/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_self\">Avada Form Builder</a></h2></div><div ><div class=\"imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-104\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/website-builder-features/avada-form-builder/\" target=\"_self\" aria-label=\"Avada Form Builder\"><img width=\"1900\" height=\"450\" alt=\"Avada Form Builder\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-form-builder-post.png\" class=\"img-responsive wp-image-867774\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-form-builder-post-200x47.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-form-builder-post-400x95.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-form-builder-post-600x142.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-form-builder-post-800x189.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-form-builder-post-1200x284.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-form-builder-post.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-238\"><p>The <a href=\"https://bit.ly/35cobDU\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> Form Builder created exclusively in-house by the Avada team, with several essential facets in mind: Flexibility, control, and choice to eliminate the need for an additional 3rd party plugin to fulfill your marketing needs. Website owners can use forms for more than just a standard contact form; forms should work for you. Use them for marketing campaigns, lead generation, customer surveys, opinion polls, reservations, events, integration with the HubSpot CRM, and so much more.</p>\n</div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-240{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-240 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:36;line-height:1.32;\">Key Features</h3></div><ul class=\"fusion-checklist fusion-checklist-64\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">20+ Bespoke Design Elements</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>A vast array of styling options</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">10+ Prebuilt forms ready for you to import</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Privacy is essential. You have full control over where your form data is sent or stored.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Use the Notice Element in the Form Builder to display confirmation notices for your form upon submission, or redirect the form submission to a specified URL.</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Integration with the HubSpot CRM</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-239\"><p><strong>Price:</strong> Free, included with your purchase of the <a href=\"https://bit.ly/35cobDU\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a>.</p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-37{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-37 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-37{width:100% !important;order : 0;}.fusion-builder-column-37 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-37{width:100% !important;order : 0;}.fusion-builder-column-37 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-38 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-241{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}.fusion-title.fusion-title-text.fusion-title-241 a{color:#111111}.fusion-title.fusion-title-text.fusion-title-241 a:hover{color:#65bc7b}</style><div class=\"fusion-title title fusion-title-241 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\"><a href=\"https://optinmonster.com/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">OptinMonster</a></h2></div><div ><div class=\"imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-105\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://optinmonster.com/\" target=\"_blank\" aria-label=\"2 OptinMonster\" rel=\"noopener noreferrer\"><img width=\"1600\" height=\"668\" alt=\"Optinmonster\" src=\"https://theme-fusion.com/wp-content/uploads/2021/05/2-OptinMonster.jpg\" class=\"img-responsive wp-image-866697\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/05/2-OptinMonster-200x84.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/05/2-OptinMonster-400x167.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/05/2-OptinMonster-600x251.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/05/2-OptinMonster-800x334.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/05/2-OptinMonster-1200x501.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/05/2-OptinMonster.jpg 1600w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-240\"><p><span style=\"font-weight: 400;\">OptinMonster is a popular WordPress email opt-in plugin that you can use to create a variety of opt-in forms, including lightbox popups, sidebar widgets, full-screen fillers, and even gamified &#8220;spin the wheel&#8221; lead capture offers.</span></p>\n<p><span style=\"font-weight: 400;\">Technically, it&#8217;s a standalone SaaS lead generation tool, but you can easily integrate it with WordPress thanks to a dedicated WordPress integration plugin.</span></p>\n<p><span style=\"font-weight: 400;\">You can use a drag-and-drop builder to design your forms and you&#8217;ll be able to add email subscribers to the most popular CRMs and marketing services. You&#8217;ll also get lots of advanced targeting and trigger rules to control when to display your opt-ins to website visitors.</span></p>\n<p><span style=\"font-weight: 400;\">It&#8217;s pricey, but it&#8217;s also one of the most advanced WordPress opt-in plugins, which makes it a good option for serious marketers who are willing to invest in a tool with advanced targeting and trigger rules.</span></p>\n</div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-242{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-242 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:36;line-height:1.32;\">Key Features</h3></div><ul class=\"fusion-checklist fusion-checklist-65\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">8+ form types including popups, notification bars, inline forms, gamified wheels, and more.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Drag-and-drop builder to customize your forms.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Include advanced form elements, like countdown timers.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Detailed targeting rules &#8211; target your forms to specific content or based on user behavior.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Flexible trigger rules, including exit-intent triggering.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Integration with WooCommerce (and other eCommerce platforms) to target forms based on the items in a user&#8217;s cart or the value of the cart.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Integrations to add subscribers to most popular email marketing services, webinar tools, and CRMs including HubSpot, Mailchimp, AWeber, and more.</span></p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p><span style=\"font-weight: 400;\">Built-in A/B testing to optimize form conversion rates.</span></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-241\"><p><b>Price</b><span style=\"font-weight: 400;\">: OptinMonster&#8217;s plans start at $108 per year for use on a single site, but you&#8217;ll need a higher-tier plan to access the more advanced features, targeting rules, and triggers.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-38{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-38 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-38{width:100% !important;order : 0;}.fusion-builder-column-38 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-38{width:100% !important;order : 0;}.fusion-builder-column-38 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-39 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-243{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}.fusion-title.fusion-title-text.fusion-title-243 a{color:#111111}.fusion-title.fusion-title-text.fusion-title-243 a:hover{color:#65bc7b}</style><div class=\"fusion-title title fusion-title-243 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\"><a href=\"https://wordpress.org/plugins/wordpress-popup/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">Hustle</a></h2></div><div ><div class=\"imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-106\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://wordpress.org/plugins/wordpress-popup/\" target=\"_blank\" aria-label=\"7 Hustle\" rel=\"noopener noreferrer\"><img width=\"1292\" height=\"418\" alt=\"Hustle Plugin\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/7-Hustle.jpg\" class=\"img-responsive wp-image-866725\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/7-Hustle-200x65.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/7-Hustle-400x129.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/7-Hustle-600x194.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/7-Hustle-800x259.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/7-Hustle-1200x388.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/7-Hustle.jpg 1292w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-242\"><p>Hustle is a freemium WordPress lead capture plugin from WPMU DEV. It helps you create popups, notifications, inline forms, and more. You can target your forms to specific content on your site or embed them manually using a shortcode or block.</p>\n<p>To control the design, you can start from pre-built designs and then customize them using a simple (but not drag-and-drop) editor. Once you publish a form, you&#8217;ll get built-in analytics to track its performance.</p>\n<p>In addition to lead capture forms, Hustle can also help you create social media share buttons for most popular networks.</p>\n</div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-244{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-244 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:36;line-height:1.32;\">Key Features</h3></div><ul class=\"fusion-checklist fusion-checklist-66\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>3+ form types including popups, embedded forms, and slide-ins.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Pre-built templates and easy template customization.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Target your lead generation forms to specific content and/or schedule them to run during certain times.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Flexible trigger rules including exit-intent.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Integrations with most popular email marketing services and CRMs, including HubSpot, MailerLite, Mailchimp, ConvertKit, and more. There&#8217;s also a Zapier integration.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Social media share buttons.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-243\"><p><b>Price</b><span style=\"font-weight: 400;\">: Hustle gives you most features in its free version at WordPress.org, but limits the number of forms you can create. To create unlimited lead capture forms and access some other advanced features, the premium version starts at $60.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-39{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-39 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-39{width:100% !important;order : 0;}.fusion-builder-column-39 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-39{width:100% !important;order : 0;}.fusion-builder-column-39 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-40 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-245{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}.fusion-title.fusion-title-text.fusion-title-245 a{color:#111111}.fusion-title.fusion-title-text.fusion-title-245 a:hover{color:#65bc7b}</style><div class=\"fusion-title title fusion-title-245 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\"><a href=\"https://wordpress.org/plugins/optin-forms/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">Optin Forms</a></h2></div><div ><div class=\"imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-107\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://wordpress.org/plugins/optin-forms/\" target=\"_blank\" aria-label=\"8 Optin Forms\" rel=\"noopener noreferrer\"><img width=\"1174\" height=\"380\" alt=\"Optin Forms\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/8-Optin-Forms.jpg\" class=\"img-responsive wp-image-866726\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/8-Optin-Forms-200x65.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/8-Optin-Forms-400x129.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/8-Optin-Forms-600x194.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/8-Optin-Forms-800x259.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/8-Optin-Forms.jpg 1174w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-244\"><p>Optin Forms is a simple free lead generation plugin for creating basic embedded forms. You can start from one of the 5+ pre-built templates and customize its text, colors, and CTA using a simple editor &#8211; no HTML or CSS required.</p>\n<p>You can integrate your forms with several popular email marketing services including Mailchimp, ConvertKit, MadMimi, GetResponse, and more. Then, you can embed them in your content using a shortcode or automatically add it to all posts/pages.</p>\n<p>Overall, it can be a good option if you just want basic inline forms and are looking for a free solution, but it lacks the advanced features that that many of the other plugins on this list offer.</p>\n</div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-246{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-246 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:36;line-height:1.32;\">Key Features</h3></div><ul class=\"fusion-checklist fusion-checklist-67\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Very simple plugin &#8211; good for people who need a basic solution.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Create basic embedded/inline lead capture forms.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>5+ pre-built templates.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Customize the template using a simple editor.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Automatically add your form to posts/pages or embed it manually using a shortcode.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-245\"><p><b>Price</b><span style=\"font-weight: 400;\">: Optin Forms is 100% free.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-40{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-40 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-40{width:100% !important;order : 0;}.fusion-builder-column-40 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-40{width:100% !important;order : 0;}.fusion-builder-column-40 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-41 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-247{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}.fusion-title.fusion-title-text.fusion-title-247 a{color:#111111}.fusion-title.fusion-title-text.fusion-title-247 a:hover{color:#65bc7b}</style><div class=\"fusion-title title fusion-title-247 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\"><a href=\"https://wordpress.org/plugins/mailoptin/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">MailOptin</a></h2></div><div ><div class=\"imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-108\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://wordpress.org/plugins/mailoptin/\" target=\"_blank\" aria-label=\"9 MailOptin\" rel=\"noopener noreferrer\"><img width=\"1292\" height=\"418\" alt=\"MailOptin Plugin\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/9-MailOptin.jpg\" class=\"img-responsive wp-image-866730\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/9-MailOptin-200x65.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/9-MailOptin-400x129.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/9-MailOptin-600x194.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/9-MailOptin-800x259.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/9-MailOptin-1200x388.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/9-MailOptin.jpg 1292w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-246\"><p>MailOptin is a popular freemium WordPress lead generation plugin that you can use to create popups, slide-ins, notification bars, inline forms, sidebar widgets, and more.</p>\n<p>You can start from pre-built templates and then customize them using a visual interface that works just like the native WordPress Customizer that most themes use. You&#8217;ll get page-level targeting to make sure the right visitors see your forms and you can use triggers to control when your forms appear.</p>\n<p>If you upgrade to the premium version, MailOptin can also help you send email newsletters without leaving your WordPress dashboard (though you&#8217;ll need to be using a compatible email marketing service).</p>\n</div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-248{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-248 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:36;line-height:1.32;\">Key Features</h3></div><ul class=\"fusion-checklist fusion-checklist-68\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Create 5+ types of forms including embedded forms, popups (lightbox or modal), notification bars, slide-ins, and sidebar widgets.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Customize templates using the real-time WordPress Customizer.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Page-level targeting for your forms.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>User-specific targeting rules like referrer detection and new vs. returning visitors.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Flexible triggers including exit-intent.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Built-in A/B testing.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Integrates with most popular CRMs and email marketing services including HubSpot, Mailchimp, AWeber, Keap, Drip, Sendinblue, and more.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Send newsletters from your WordPress dashboard (if you&#8217;re using a compatible email marketing service).</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-247\"><p><b>Price</b><span style=\"font-weight: 400;\">: MailOptin has a basic free version at WordPress.org. To unlock all of the features, the premium pricing starts at $79 for all of the lead generation functionality. To access the newsletter feature, you need the $199 Pro license.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-41{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-41 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-41{width:100% !important;order : 0;}.fusion-builder-column-41 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-41{width:100% !important;order : 0;}.fusion-builder-column-41 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-42 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-249{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}.fusion-title.fusion-title-text.fusion-title-249 a{color:#111111}.fusion-title.fusion-title-text.fusion-title-249 a:hover{color:#65bc7b}</style><div class=\"fusion-title title fusion-title-249 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\"><a href=\"https://wordpress.org/plugins/wpforms-lite/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">WPForms</a></h2></div><div ><div class=\"imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-109\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://wordpress.org/plugins/wpforms-lite/\" target=\"_blank\" aria-label=\"10 WPForms\" rel=\"noopener noreferrer\"><img width=\"1292\" height=\"418\" alt=\"WPForms Plugin\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/10-WPForms.jpg\" class=\"img-responsive wp-image-866732\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/10-WPForms-200x65.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/10-WPForms-400x129.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/10-WPForms-600x194.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/10-WPForms-800x259.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/10-WPForms-1200x388.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/10-WPForms.jpg 1292w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-248\"><p>WPForms is a popular WordPress form plugin. The free version makes a great option for basic contact forms, but if you upgrade to the premium version you can use it for WordPress lead capture forms thanks to its advanced form fields and integrations with external CRMs, email marketing services, and more.</p>\n<p>Overall, WP Forms can be a good option if you want to create lengthier, more complicated lead capture forms, rather than simple one or two-field forms.</p>\n</div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-250{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-250 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:36;line-height:1.32;\">Key Features</h3></div><ul class=\"fusion-checklist fusion-checklist-69\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Drag-and-drop form builder.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Add unlimited fields and choose from a variety of field types.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Integrations with most popular email marketing services and CRMs, including HubSpot and Salesforce.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Zapier integration to connect to any one of the thousands of apps on Zapier.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Customize form notifications and confirmations as needed.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-249\"><p><b>Price</b><span style=\"font-weight: 400;\">: The core WPForms plugin is available for free at WordPress.org, but you&#8217;ll probably want the premium version to capture leads. Paid plans start from $39.50.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-42{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-42 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-42{width:100% !important;order : 0;}.fusion-builder-column-42 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-42{width:100% !important;order : 0;}.fusion-builder-column-42 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-43 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-251{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}.fusion-title.fusion-title-text.fusion-title-251 a{color:#111111}.fusion-title.fusion-title-text.fusion-title-251 a:hover{color:#65bc7b}</style><div class=\"fusion-title title fusion-title-251 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\"><a href=\"https://wordpress.org/plugins/holler-box/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">Holler Box</a></h2></div><div ><div class=\"imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-110\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://wordpress.org/plugins/holler-box/\" target=\"_blank\" aria-label=\"11 Holler Forms\" rel=\"noopener noreferrer\"><img width=\"1292\" height=\"418\" alt=\"Holler Box Plugin\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/11-Holler-Forms.jpg\" class=\"img-responsive wp-image-866733\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/11-Holler-Forms-200x65.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/11-Holler-Forms-400x129.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/11-Holler-Forms-600x194.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/11-Holler-Forms-800x259.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/11-Holler-Forms-1200x388.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/11-Holler-Forms.jpg 1292w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-250\"><p>Holler Box is a lightweight WordPress lead capture plugin that helps you add unobtrusive slide-in forms to capture leads without getting the way of users experiencing your site. You can also use it to create more traditional popups, but its most unique feature is definitely how it approaches slide-ins.</p>\n<p>You can create unlimited forms and use targeting and trigger rules to control exactly where and when they display. You&#8217;ll be able to customize your forms using a simple editor and then automatically add subscribers to popular services such as Mailchimp, Drip, ConvertKit, and more.</p>\n<p>All in all, Holler Box can be a good option for simple, unobtrusive opt-in forms.</p>\n</div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-252{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-252 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:36;line-height:1.32;\">Key Features</h3></div><ul class=\"fusion-checklist fusion-checklist-70\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Create unobtrusive slide-ins or popups.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Integrates with Mailchimp, Drip, ConvertKit, and some other popular services.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Choose from three templates and customize them using a simple editor.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Target your lead capture forms to specific content.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Use triggers to control when to display offers, including exit-intent.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-251\"><p><b>Price</b><span style=\"font-weight: 400;\">: Holler Box has a free version at WordPress.org. To access more advanced features like advanced targeting rules and scheduling, the premium pricing starts at $79.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-43{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-43 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-43{width:100% !important;order : 0;}.fusion-builder-column-43 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-43{width:100% !important;order : 0;}.fusion-builder-column-43 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-44 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-253{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}.fusion-title.fusion-title-text.fusion-title-253 a{color:#111111}.fusion-title.fusion-title-text.fusion-title-253 a:hover{color:#65bc7b}</style><div class=\"fusion-title title fusion-title-253 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\"><a href=\"https://wordpress.org/plugins/quiz-master-next/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">Quiz and Survey Master</a></h2></div><div ><div class=\"imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-111\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://wordpress.org/plugins/quiz-master-next/\" target=\"_blank\" aria-label=\"12 Quiz and Survey Mastery\" rel=\"noopener noreferrer\"><img width=\"1292\" height=\"418\" alt=\"Quiz and Survey Master Plugin\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/12-Quiz-and-Survey-Mastery.jpg\" class=\"img-responsive wp-image-866736\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/12-Quiz-and-Survey-Mastery-200x65.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/12-Quiz-and-Survey-Mastery-400x129.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/12-Quiz-and-Survey-Mastery-600x194.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/12-Quiz-and-Survey-Mastery-800x259.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/12-Quiz-and-Survey-Mastery-1200x388.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/12-Quiz-and-Survey-Mastery.jpg 1292w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-252\"><p>Quiz And Survey Master is a unique WordPress lead capture plugin in that it helps you capture leads using interactive quizzes, rather than popups or other types of opt-in forms.</p>\n<p>You can create a serious quiz or a whimsical personality quiz (Buzzfeed-style). Then, once people have filled out the quiz, you can ask them to enter their personal details in order to get the results. Or, you can give them the results, but add a call to action to join your list.</p>\n<p>All in all, Quiz And Survey Master is an interesting option if you want to experiment with using quizzes to capture leads.</p>\n</div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-254{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-254 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:36;line-height:1.32;\">Key Features</h3></div><ul class=\"fusion-checklist fusion-checklist-71\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Create quizzes using a simple builder.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Works for serious quizzes or more viral personality-style quizzes.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Add a CTA to join your list or require people to enter their information to receive results.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Integrates with Mailchimp, Campaign Monitor, and more. There&#8217;s also a catch-all Zapier integration.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-253\"><p><b>Price</b><span style=\"font-weight: 400;\">: Quiz And Survey Master has a free version at WordPress.org, but you&#8217;ll probably want the premium add-ons for lead generation. You can purchase individual add-ons or bundles starting at $79.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-44{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-44 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-44{width:100% !important;order : 0;}.fusion-builder-column-44 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-44{width:100% !important;order : 0;}.fusion-builder-column-44 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-45 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-255{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}.fusion-title.fusion-title-text.fusion-title-255 a{color:#111111}.fusion-title.fusion-title-text.fusion-title-255 a:hover{color:#65bc7b}</style><div class=\"fusion-title title fusion-title-255 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\"><a href=\"https://captureandconvert.io/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">Capture &amp; Convert</a></h2></div><div ><div class=\"imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-112\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://captureandconvert.io/\" target=\"_blank\" aria-label=\"13 Capture &#038; Convert\" rel=\"noopener noreferrer\"><img width=\"1600\" height=\"625\" alt=\"Capture &amp; Convert\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/13-Capture-Convert.jpg\" class=\"img-responsive wp-image-866738\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/13-Capture-Convert-200x78.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/13-Capture-Convert-400x156.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/13-Capture-Convert-600x234.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/13-Capture-Convert-800x313.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/13-Capture-Convert-1200x469.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/13-Capture-Convert.jpg 1600w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-254\"><p>Finally, we have Capture &amp; Convert, which is a WordPress lead generation plugin that helps you capture more leads by locking some or all of your content behind an email subscribe form.</p>\n<p>You can wrap the content that you want to restrict between a shortcode and then require users to subscribe, share, follow, or click a call to action button to unlock the content.</p>\n<p>All in all, it&#8217;s a good option if you want to experiment with content restriction as a lead capture strategy, but it&#8217;s not as flexible as other tools</p>\n</div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-256{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-256 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:36;line-height:1.32;\">Key Features</h3></div><ul class=\"fusion-checklist fusion-checklist-72\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Require users to enter their email to unlock some/all of your content.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Restrict content using a shortcode.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Multiple pre-built templates.</p>\n</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" style=\"color:#65bc7b;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">\n<p>Integrations with 7+ providers including HubSpot, Mailchimp, ActiveCampaign, AWeber, Constant Contact, Campaign Monitor, and Drip.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-255\"><p><b>Pricing</b><span style=\"font-weight: 400;\">: Capture &amp; Convert has a limited free version. Paid plans start at $19/month.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-45{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-45 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-45{width:100% !important;order : 0;}.fusion-builder-column-45 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-45{width:100% !important;order : 0;}.fusion-builder-column-45 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-46 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-257{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-257 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Get Started With These WordPress Lead Capture Plugins Today</h2></div><div class=\"fusion-text fusion-text-256\"><p>All of these plugins can help you start generating more leads from your WordPress website.</p>\n<p>If you don&#8217;t already have a tool to store those leads, the HubSpot plugin can be a great option because it helps you not only capture leads via forms, popups, and live chat, but also store those leads automatically in the HubSpot CRM.</p>\n<p>Or, if you already have a CRM or email marketing service that you&#8217;re using, you can consider one of the standalone tools, as long as it has an integration for the service that you&#8217;re using (or a catch-all Zapier integration).</p>\n<p>Do you still have any questions about choosing the best WordPress lead capture plugin for your needs? Leave a comment!</p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-46{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-46 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-46{width:100% !important;order : 0;}.fusion-builder-column-46 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-46{width:100% !important;order : 0;}.fusion-builder-column-46 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-37{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/10-best-wordpress-lead-capture-plugins-for-wordpress-users-in-2021/\">10+ Best WordPress Lead Capture Plugins for WordPress Users in 2021</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://theme-fusion.com/10-best-wordpress-lead-capture-plugins-for-wordpress-users-in-2021/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"A Major 700K Milestone! Thank you\";s:7:\"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://theme-fusion.com/a-major-700k-milestone-thank-you/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Jun 2021 13:43: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:5:\"Avada\";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:12:\"Achievements\";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:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=867622\";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:550:\"<p>Each milestone is a celebration, and is very special. A huge thank you to our Avada community and our team for being the best anyone could ask for. Thank you to  + beginners, businesses, and professionals who have chosen to make Avada part of their daily lives. As a team, we are proud, we [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/a-major-700k-milestone-thank-you/\">A Major 700K Milestone! Thank you</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Michael\";s: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:14423:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-38 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-bottom: 0px;margin-top: 0px;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-47 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last\" style=\"margin-top:20px;margin-bottom:0px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-257\"><p>Each <a href=\"https://theme-fusion.com/the-avada-500k-celebratory-sale/\" target=\"_blank\" rel=\"noopener noreferrer\">milestone </a> is a <a href=\"https://envato.com/blog/themefusions-avada-sells-its-500000th-licence/\" target=\"_blank\" rel=\"noopener noreferrer\">celebration</a>, and is very special. A huge thank you to our <a href=\"https://bit.ly/35cobDU\" target=\"_blank\" rel=\"noopener noreferrer\">Avada </a>community and our team for being the best anyone could ask for. Thank you to <span class=\"fusion-cs-live-sales\">716,369</span>+ beginners, businesses, and professionals who have chosen to make <a href=\"https://bit.ly/35cobDU\" target=\"_blank\" rel=\"noopener noreferrer\">Avada </a>part of their daily lives. As a team, we are proud, we are humbled, and it is wonderful to see just how far Avada has grown on <a href=\"https://themeforest.net/authors/top\">Themeforest</a> over the last <span class=\"fusion-cs-live-years\">8</span>+ years.</p>\n<p>Avada&#8217;s evolutionary growth and community continue to inspire us to make a positive difference internally and externally. It is a cornerstone of our company philosophy and culture here at ThemeFusion HQ. What we have created as a team and community and how we continue to evolve Avada has motivated many into becoming self-sufficient and confident in utilizing WordPress + <a href=\"https://bit.ly/35cobDU\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the ultimate website builder, daily.</p>\n</div><div class=\"fusion-clearfix\"></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-39 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-equal-height-columns\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-bottom: 0px;margin-top: 0px;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-48 fusion_builder_column_1_4 1_4 fusion-one-fourth fusion-column-first\" style=\"width:25%;width:calc(25% - ( ( 5px + 5px + 5px ) * 0.25 ) );margin-right: 5px;margin-top:20px;margin-bottom:20px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;border-radius:10px 10px 10px 10px;background-color:#022e4c;border-radius:10px 10px 10px 10px;overflow:hidden;padding: 10px 10px 10px 10px;\"><div class=\"fusion-column-content-centered\"><div class=\"fusion-column-content\"><style type=\"text/css\"></style><div class=\"fusion-title title fusion-title-258 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-two\" style=\"font-size:22px;margin-top:20px;margin-bottom:10px;\"><h2 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#ffffff;--fontSize:22;--minFontSize:22px;line-height:1.09;\"><span class=\"fusion-cs-live-years\">8</span>+ Years</p></h2></div><style type=\"text/css\"></style><div class=\"fusion-title title fusion-title-259 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;color:#ffffff;--fontSize:36;line-height:1.32;\">At #1</h3></div></div></div><div class=\"fusion-clearfix\"></div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-49 fusion_builder_column_1_4 1_4 fusion-one-fourth\" style=\"width:25%;width:calc(25% - ( ( 5px + 5px + 5px ) * 0.25 ) );margin-right: 5px;margin-top:20px;margin-bottom:20px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;border-radius:10px 10px 10px 10px;background-color:#022e4c;border-radius:10px 10px 10px 10px;overflow:hidden;padding: 10px 10px 10px 10px;\"><div class=\"fusion-column-content-centered\"><div class=\"fusion-column-content\"><style type=\"text/css\"></style><div class=\"fusion-title title fusion-title-260 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-two\" style=\"font-size:22px;margin-top:20px;margin-bottom:10px;\"><h2 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#ffffff;--fontSize:22;--minFontSize:22px;line-height:1.09;\"><span class=\"fusion-cs-live-sales\">716,369</span>+</h2></div><style type=\"text/css\"></style><div class=\"fusion-title title fusion-title-261 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;color:#ffffff;--fontSize:36;line-height:1.32;\">Sold</h3></div></div></div><div class=\"fusion-clearfix\"></div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-50 fusion_builder_column_1_4 1_4 fusion-one-fourth\" style=\"width:25%;width:calc(25% - ( ( 5px + 5px + 5px ) * 0.25 ) );margin-right: 5px;margin-top:20px;margin-bottom:20px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;border-radius:10px 10px 10px 10px;background-color:#022e4c;border-radius:10px 10px 10px 10px;overflow:hidden;padding: 10px 10px 10px 10px;\"><div class=\"fusion-column-content-centered\"><div class=\"fusion-column-content\"><style type=\"text/css\"></style><div class=\"fusion-title title fusion-title-262 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-two\" style=\"font-size:22px;margin-top:20px;margin-bottom:10px;\"><h2 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#ffffff;--fontSize:22;--minFontSize:22px;line-height:1.09;\"><span class=\"fusion-cs-live-ratings\">24,413</span>+</h2></div><style type=\"text/css\"></style><div class=\"fusion-title title fusion-title-263 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;color:#ffffff;--fontSize:36;line-height:1.32;\">Reviews</h3></div></div></div><div class=\"fusion-clearfix\"></div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-51 fusion_builder_column_1_4 1_4 fusion-one-fourth fusion-column-last\" style=\"width:25%;width:calc(25% - ( ( 5px + 5px + 5px ) * 0.25 ) );margin-top:20px;margin-bottom:20px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;border-radius:10px 10px 10px 10px;background-color:#022e4c;border-radius:10px 10px 10px 10px;overflow:hidden;padding: 10px 10px 10px 10px;\"><div class=\"fusion-column-content-centered\"><div class=\"fusion-column-content\"><style type=\"text/css\"></style><div class=\"fusion-title title fusion-title-264 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-two\" style=\"font-size:22px;margin-top:20px;margin-bottom:10px;\"><h2 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#ffffff;--fontSize:22;--minFontSize:22px;line-height:1.09;\">1,622,184+</h2></div><style type=\"text/css\"></style><div class=\"fusion-title title fusion-title-265 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;color:#ffffff;--fontSize:36;line-height:1.32;\">Engagements</h3></div></div></div><div class=\"fusion-clearfix\"></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-40 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-bottom: 0px;margin-top: 0px;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-52 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last\" style=\"margin-top:20px;margin-bottom:0px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\"></style><div class=\"fusion-title title fusion-title-266 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Vote To Influence The Avada Roadmap</h2></div><div class=\"fusion-text fusion-text-258\"><p>The evolution of <a href=\"https://bit.ly/35cobDU\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a>, into a fully-fledged <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Website Builder</a>, over the years is nothing short of amazing. We launched Avada in August 2012 to simplify and extend the basic functionality that WordPress offered at that time. What has been phenomenal to witness is that ordinary people have made the Avada platform their go-to website designing and building toolkit over the last 8+ years. Have your say on what comes next.</p>\n</div><div class=\"fusion-align-block\"><style type=\"text/css\">.fusion-button.button-19 .fusion-button-text, .fusion-button.button-19 i {color:#fff;}.fusion-button.button-19 .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-19:hover .fusion-button-text, .fusion-button.button-19:hover i,.fusion-button.button-19:focus .fusion-button-text, .fusion-button.button-19:focus i,.fusion-button.button-19:active .fusion-button-text, .fusion-button.button-19:active{color:#fff;}.fusion-button.button-19:hover .fusion-button-icon-divider, .fusion-button.button-19:hover .fusion-button-icon-divider, .fusion-button.button-19:active .fusion-button-icon-divider{border-color:#fff;}.fusion-button.button-19:hover, .fusion-button.button-19:focus, .fusion-button.button-19:active{border-color:#fff;}.fusion-button.button-19 {border-color:#fff;border-radius:0px;}.fusion-button.button-19{background: #022e4c;}.fusion-button.button-19:hover,.button-19:focus,.fusion-button.button-19:active{background: #003459;}</style><a class=\"fusion-button button-square button-large button-custom button-19 fusion-button-span-yes \" target=\"_self\" title=\"Vote To Influence The Avada Roadmap\" href=\"https://theme-fusion.com/feature-voting/\"><span class=\"fusion-button-text\">Vote To Influence The Avada Roadmap</span><i class=\"fa-vote-yea fas button-icon-right\" aria-hidden=\"true\"></i></a></div><div class=\"fusion-clearfix\"></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-41 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-bottom: 0px;margin-top: 0px;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-53 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last\" style=\"margin-top:0px;margin-bottom:20px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-sep-clear\"></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;margin-top:20px;width:100%;\"></div><div class=\"fusion-sep-clear\"></div><div class=\"fusion-text fusion-text-259\"><p>Thank you,<br />\nThe ThemeFusion Team</p>\n<p><em>Please note that comments are turned off on this announcement post so we can focus on our customers <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em></p>\n</div><div class=\"fusion-clearfix\"></div></div></div></div></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/a-major-700k-milestone-thank-you/\">A Major 700K Milestone! Thank you</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:79:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Avada 7.4 is live! A Performance Update\";s:7:\"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://theme-fusion.com/avada-7-4-is-live-a-performance-update/\";s: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:73:\"https://theme-fusion.com/avada-7-4-is-live-a-performance-update/#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:\"Mon, 14 Jun 2021 12:44: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:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Performance\";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:13:\"Theme Updates\";s:7:\"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://theme-fusion.com/?p=867241\";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:605:\"<p>We are thrilled to announce the release of Avada 7.4, the latest evolutionary update for the Avada Website Builder. This latest update released on June 8th, 2021, introduces a vast array of amazing performance features, giving you the confidence to take any project head on.  Website performance and optimization can be a reasonably [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-7-4-is-live-a-performance-update/\">Avada 7.4 is live! A Performance Update</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Michael\";s: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:16901:\"<div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-42 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-bottom: 0px;margin-top: 0px;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-54 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last\" style=\"margin-top:20px;margin-bottom:0px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-260\"><p style=\"text-align: left;\">We are thrilled to announce the release of <a href=\"https://bit.ly/35cobDU\" target=\"_blank\" rel=\"noopener noreferrer\">Avada 7.4</a>, the latest evolutionary update for the <a href=\"https://bit.ly/35cobDU\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a>. This <a href=\"https://avada.theme-fusion.com/whats-new-in-7-4/\" target=\"_blank\" rel=\"noopener noreferrer\">latest update</a> released on June 8th, 2021, introduces a vast array of amazing performance features, giving you the confidence to take any project head on.</p>\n</div><div class=\"fusion-text fusion-text-261\"><p style=\"text-align: left;\">Website performance and optimization can be a reasonably complex topic. Besides the vast array performance enhancements that have been introduced for Avada, our team developed tools that will make the process of optimizing your <a href=\"https://bit.ly/35cobDU\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website w whole easier. Ranging from the new Performance Wizard to above-the-fold optimization options, an icon scanner, asset management recommendations, and so much more.</p>\n</div><div class=\"fusion-sep-clear\"></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;margin-top:10px;width:100%;\"></div><div class=\"fusion-sep-clear\"></div><div class=\"fusion-video fusion-youtube\" style=\"max-width:750px;max-height:422px;\"><div class=\"video-shortcode\"><iframe title=\"YouTube video player 1\" src=\"https://www.youtube.com/embed/bX6aBUu_fgI?wmode=transparent&autoplay=0\" width=\"750\" height=\"422\" allowfullscreen allow=\"autoplay; fullscreen\"></iframe></div></div><div class=\"fusion-sep-clear\"></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;margin-top:30px;width:100%;\"></div><div class=\"fusion-sep-clear\"></div><div class=\"fusion-aligncenter\"><style type=\"text/css\">.fusion-button.button-20 {border-radius:2px;}</style><a class=\"fusion-button button-square button-large button-default button-20 fusion-button-default-span \" target=\"_blank\" rel=\"noopener noreferrer\" title=\" See What&#039;s New In Avada 7.4\" href=\"https://avada.theme-fusion.com/whats-new-in-7-4/\"><span class=\"fusion-button-text\"> See What&#8217;s New In Avada 7.4</span><i class=\"fa-arrow-alt-circle-right fas button-icon-right\" aria-hidden=\"true\"></i></a></div><div class=\"fusion-sep-clear\"></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;margin-top:50px;width:100%;\"></div><div class=\"fusion-sep-clear\"></div><style type=\"text/css\"></style><div class=\"fusion-title title fusion-title-267 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Introducing The Avada’s Performance Wizard</h2></div><div class=\"fusion-clearfix\"></div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-55 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last fusion-animated\" style=\"margin-top:0px;margin-bottom:20px;\" data-animationType=\"fadeInUp\" data-animationDuration=\"1.2\" data-animationOffset=\"top-into-view\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-image: linear-gradient(162deg, #ffe979 68%,rgba(187,95,101,0.2) 100%);background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#ffe979;padding: 55px 30px 35px 30px;\"><div class=\"fusion-column-content-centered\"><div class=\"fusion-column-content\"><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-24 fusion-column-first\" style=\"width:42%;width:calc(42% - ( ( 4% ) * 0.42 ) );margin-right: 4%;margin-top:0px;margin-bottom:0px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"imageframe-align-center\"><span class=\" fusion-imageframe imageframe-none imageframe-113 hover-type-none\" style=\"max-width:360px;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" aria-label=\"Avada Performance Wizard\" rel=\"noopener noreferrer\"><img width=\"387\" height=\"339\" alt=\"Avada Performance Wizard\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/performance-wizard-img.jpg\" class=\"img-responsive wp-image-867565\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/performance-wizard-img-200x175.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/performance-wizard-img.jpg 387w\" sizes=\"(max-width: 900px) 100vw, 387px\" /></a></span></div><div class=\"fusion-clearfix\"></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-25 fusion-column-last\" style=\"width:58%;width:calc(58% - ( ( 4% ) * 0.58 ) );margin-top:20px;margin-bottom:20px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 5% 0px 5%;\"><div class=\"fusion-column-content-centered\"><div class=\"fusion-column-content\"><div class=\"fusion-text fusion-text-262\" style=\"line-height:1.7em;color:#555643;margin-top:10%;\"><p>Scan, analyze, and manage your website features and be empowered to make better performance-related decisions.</p>\n</div></div></div><div class=\"fusion-clearfix\"></div></div></div></div></div></div><div class=\"fusion-clearfix\"></div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-56 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last\" style=\"margin-top:20px;margin-bottom:0px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-263\"><p style=\"text-align: left;\">The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/35cobDU\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. Once you have built your website or have just updated to Avada 7.4, the step-by-step interface will guide you by scanning your assets and recommending options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-73\" style=\"font-size:16px;line-height:27.2px;\"><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check-circle far\" style=\"color:#65bd7d;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Critical CSS &amp; Advanced Optimization</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check-circle far\" style=\"color:#65bd7d;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Disable Unused Features</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check-circle far\" style=\"color:#65bd7d;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Icon Scanner</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check-circle far\" style=\"color:#65bd7d;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Font Management &amp; Handling</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check-circle far\" style=\"color:#65bd7d;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">Video Facade Image &amp; Video Optimization</div></li><li class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check-circle far\" style=\"color:#65bd7d;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;\">JS &amp; CSS Optimization</div></li></ul><div class=\"fusion-sep-clear\"></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;margin-top:30px;width:100%;\"></div><div class=\"fusion-sep-clear\"></div><div class=\"fusion-clearfix\"></div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-57 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last\" style=\"margin-top:20px;margin-bottom:0px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\"></style><div class=\"fusion-title title fusion-title-268 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Above The Fold Optimization</h2></div><div class=\"fusion-text fusion-text-264\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling. The new features that <a href=\"http://bit.ly/2l3jd8A\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> provides will allow you to optimize your content for improved performance on mobile &amp; desktop.</p>\n<p>You can now egenerate critical CSS which will lead to a faster render time, and image preloading for your website&#8217;s images to improve performance.</p>\n</div><div class=\"imageframe-align-center\"><span class=\" fusion-imageframe imageframe-none imageframe-114 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"Enable Critical CSS\" rel=\"noopener noreferrer\"><img width=\"1056\" height=\"598\" alt=\"Enable Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/critical-css-img.jpg\" class=\"img-responsive wp-image-867584\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/critical-css-img-200x113.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/critical-css-img-400x227.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/critical-css-img-600x340.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/critical-css-img-800x453.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/critical-css-img.jpg 1056w\" sizes=\"(max-width: 900px) 100vw, 800px\" /></a></span></div><div class=\"fusion-sep-clear\"></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;margin-top:50px;width:100%;\"></div><div class=\"fusion-sep-clear\"></div><style type=\"text/css\"></style><div class=\"fusion-title title fusion-title-269 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">New Options to Build a Side Header</h2></div><div class=\"fusion-text fusion-text-265\"><p>Build all the headers! This long-awaited new feature is ready for you to use, and it is super flexible. Building a Side Header in Avada Layouts is a straightforward process. Essentially, it&#8217;s just a setting in the Layout Section Options for a Header Layout Section.</p>\n</div><div class=\"fusion-sep-clear\"></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;margin-top:50px;width:100%;\"></div><div class=\"fusion-sep-clear\"></div><style type=\"text/css\"></style><div class=\"fusion-title title fusion-title-270 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Stylish New Prebuilt Website</h2></div><div class=\"fusion-text fusion-text-266\"><p><a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Mechanic</a> is a bright, lightweight, and super flexible prebuilt website that you can import at the click of a button from your Dashboard.</p>\n</div><div class=\"fusion-sep-clear\"></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;margin-top:20px;width:100%;\"></div><div class=\"fusion-sep-clear\"></div><span class=\" fusion-imageframe imageframe-none imageframe-115 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/retail/\" target=\"_blank\" aria-label=\"Avada Mechanic\" rel=\"noopener noreferrer\"><img width=\"959\" height=\"591\" alt=\"Avada Retail Prebuilt Website\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-mechanic-prebuilt.jpg\" class=\"img-responsive wp-image-867589\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-mechanic-prebuilt-200x123.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-mechanic-prebuilt-400x247.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-mechanic-prebuilt-600x370.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-mechanic-prebuilt-800x493.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-mechanic-prebuilt.jpg 959w\" sizes=\"(max-width: 900px) 100vw, 800px\" /></a></span><div class=\"fusion-sep-clear\"></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;margin-top:50px;width:100%;\"></div><div class=\"fusion-sep-clear\"></div><div class=\"fusion-aligncenter\"><style type=\"text/css\">.fusion-button.button-21 {border-radius:2px;}</style><a class=\"fusion-button button-square button-large button-default button-21 fusion-button-default-span \" target=\"_blank\" rel=\"noopener noreferrer\" title=\"View The Changelog\" href=\"https://theme-fusion.com/documentation/avada/installation-maintenance/avada-changelog/\"><span class=\"fusion-button-text\">View The Changelog</span><i class=\"fa-arrow-alt-circle-right fas button-icon-right\" aria-hidden=\"true\"></i></a></div><div class=\"fusion-sep-clear\"></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;margin-top:30px;width:100%;\"></div><div class=\"fusion-sep-clear\"></div><div class=\"fusion-clearfix\"></div></div></div></div></div>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-7-4-is-live-a-performance-update/\">Avada 7.4 is live! A Performance Update</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://theme-fusion.com/avada-7-4-is-live-a-performance-update/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: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:30:\"https://theme-fusion.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:9:\"\n	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:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:19:{s:4:\"date\";s:29:\"Sun, 08 Aug 2021 14:33:40 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";a:3:{i:0;s:15:\"Accept-Encoding\";i:1;s:15:\"Accept-Encoding\";i:2;s:15:\"Accept-Encoding\";}s:13:\"cf-edge-cache\";s:24:\"cache,platform=wordpress\";s:13:\"last-modified\";s:29:\"Sun, 08 Aug 2021 14:09:38 GMT\";s:4:\"link\";s:61:\"<https://theme-fusion.com/wp-json/>; rel=\"https://api.w.org/\"\";s:12:\"x-powered-by\";s:9:\"WP Engine\";s:11:\"x-cacheable\";s:17:\"CacheAlways: feed\";s:13:\"cache-control\";s:28:\"max-age=600, must-revalidate\";s:4:\"etag\";s:41:\"W/\"45d0528ebe8dee996dc9b8b9b4708dd0-gzip\"\";s:7:\"x-cache\";s:6:\"HIT: 3\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:16:\"content-encoding\";s:4:\"gzip\";s:15:\"cf-cache-status\";s:7:\"DYNAMIC\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"67b97609eb78cf1c-IAD\";}s:5:\"build\";s:14:\"20160624104343\";}','no'),(23891,'_transient_timeout_feed_mod_3ac19636a08ac871617784ce82d597b8','1628476420','no'),(23892,'_transient_feed_mod_3ac19636a08ac871617784ce82d597b8','1628433220','no'),(23893,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1628444021','yes'),(23894,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:5054;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4759;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2723;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2595;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2006;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1862;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1845;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1525;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1512;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1506;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1500;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1496;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1474;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1311;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1276;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1269;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1236;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1159;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1129;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1059;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:966;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:938;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:914;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:889;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:887;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:835;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:819;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:814;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:813;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:791;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:762;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:751;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:732;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:729;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:727;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:715;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:700;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:684;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:667;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:666;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:665;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:662;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:660;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:658;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:652;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:625;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:602;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:599;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:592;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:592;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:577;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:574;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:567;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:565;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:563;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:557;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:549;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:548;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:548;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:539;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:537;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:531;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:530;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:523;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:513;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:507;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:499;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:497;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:497;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:488;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:482;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:471;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:463;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:462;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:459;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:456;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:453;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:448;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:446;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:444;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:433;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:427;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:422;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:417;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:411;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:409;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:406;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:401;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:398;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:391;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:389;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:383;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:383;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:380;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:376;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:371;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:368;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:367;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:359;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:357;}}','yes'),(31522,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:19:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.2.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.2-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"6.2\";s:7:\"version\";s:3:\"6.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.2.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.2-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"6.2\";s:7:\"version\";s:3:\"6.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";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-6.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";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:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.1-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"6.1\";s:7:\"version\";s:3:\"6.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.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-6.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"6.0.3\";s:7:\"version\";s:5:\"6.0.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:5;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.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-5.9.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.5-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.9.5\";s:7:\"version\";s:5:\"5.9.5\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:6;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.6.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.6.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.6-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.6-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.8.6\";s:7:\"version\";s:5:\"5.8.6\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:7;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.8.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.8-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.8-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.7.8\";s:7:\"version\";s:5:\"5.7.8\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:8;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.6.10.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.6.10.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.6.10-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.6.10-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"5.6.10\";s:7:\"version\";s:6:\"5.6.10\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:9;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.5.11.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.5.11.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.5.11-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.5.11-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"5.5.11\";s:7:\"version\";s:6:\"5.5.11\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:10;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.4.12.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.4.12.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.4.12-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.4.12-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"5.4.12\";s:7:\"version\";s:6:\"5.4.12\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:11;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.3.14.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.3.14.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.3.14-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.3.14-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"5.3.14\";s:7:\"version\";s:6:\"5.3.14\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:12;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.2.17.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.2.17.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.17-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.2.17-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"5.2.17\";s:7:\"version\";s:6:\"5.2.17\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:13;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.1.15.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.1.15.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.1.15-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.1.15-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"5.1.15\";s:7:\"version\";s:6:\"5.1.15\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:14;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.0.18.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.0.18.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.0.18-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.0.18-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"5.0.18\";s:7:\"version\";s:6:\"5.0.18\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:15;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.9.22.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.9.22.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.22-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-4.9.22-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"4.9.22\";s:7:\"version\";s:6:\"4.9.22\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:16;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.8.21.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.8.21.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.8.21-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-4.8.21-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"4.8.21\";s:7:\"version\";s:6:\"4.8.21\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:17;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.7.25.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.7.25.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.7.25-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-4.7.25-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"4.7.25\";s:7:\"version\";s:6:\"4.7.25\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:18;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.6.25.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.6.25.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.6.25-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-4.6.25-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"4.6.25\";s:7:\"version\";s:6:\"4.6.25\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1682672911;s:15:\"version_checked\";s:6:\"4.5.28\";s:12:\"translations\";a:0:{}}','yes'),(31718,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1682672913;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:31:\"advance-portfolio-grid/main.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:36:\"w.org/plugins/advance-portfolio-grid\";s:4:\"slug\";s:22:\"advance-portfolio-grid\";s:6:\"plugin\";s:31:\"advance-portfolio-grid/main.php\";s:11:\"new_version\";s:6:\"1.07.0\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advance-portfolio-grid/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/advance-portfolio-grid.1.07.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/advance-portfolio-grid/assets/icon-256x256.png?rev=2227087\";s:2:\"1x\";s:75:\"https://ps.w.org/advance-portfolio-grid/assets/icon-128x128.png?rev=2227087\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advance-portfolio-grid/assets/banner-1544x500.png?rev=2227087\";s:2:\"1x\";s:77:\"https://ps.w.org/advance-portfolio-grid/assets/banner-772x250.png?rev=2227087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";a:0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.7.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";a:0:{}}}}','yes'),(33920,'_site_transient_timeout_theme_roots','1682674712','yes'),(33921,'_site_transient_theme_roots','a:4:{s:5:\"Avada\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','yes');
INSERT INTO `wp_options` VALUES (33922,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1682672913;s:7:\"checked\";a:4:{s:5:\"Avada\";s:3:\"3.9\";s:13:\"twentyfifteen\";s:3:\"1.5\";s:14:\"twentyfourteen\";s:3:\"1.7\";s:13:\"twentysixteen\";s:3:\"1.2\";}s:8:\"response\";a:3:{s:13:\"twentyfifteen\";a:6:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"3.4\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.3.4.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentyfourteen\";a:6:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"3.6\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.3.6.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.2.4\";}s:13:\"twentysixteen\";a:6:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"2.9\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.2.9.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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 DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=5087 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,4,'_edit_last','1'),(3,4,'_edit_lock','1466767217:1'),(4,5,'_wp_attached_file','2016/05/01.jpg'),(5,5,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:14:\"2016/05/01.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"01-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"01-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:15:\"01-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:14:\"01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:14:\"01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:12:\"01-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:14:\"01-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:14:\"01-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:14:\"01-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:14:\"01-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:14:\"01-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:\"01-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:14:\"01-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:14:\"01-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:14:\"01-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:12:\"01-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6,4,'_wp_page_template','100-width.php'),(15,4,'pyre_slider_position','below'),(16,4,'pyre_slider_type','rev'),(17,4,'pyre_slider','0'),(18,4,'pyre_wooslider','ink-fusion-slider'),(19,4,'pyre_revslider','home'),(20,4,'pyre_elasticslider','0'),(21,4,'pyre_fallback',''),(22,4,'pyre_avada_rev_styles','default'),(23,4,'pyre_main_top_padding','0px'),(24,4,'pyre_main_bottom_padding','0px'),(25,4,'pyre_hundredp_padding',''),(26,4,'pyre_show_first_featured_image','no'),(27,4,'pyre_display_header','yes'),(28,4,'pyre_header_100_width','default'),(29,4,'pyre_header_bg',''),(30,4,'pyre_header_bg_color',''),(31,4,'pyre_header_bg_opacity',''),(32,4,'pyre_header_bg_full','no'),(33,4,'pyre_header_bg_repeat','repeat'),(34,4,'pyre_displayed_menu','default'),(35,4,'pyre_display_footer','default'),(36,4,'pyre_display_copyright','default'),(37,4,'pyre_footer_100_width','default'),(38,4,'pyre_sidebar_position','default'),(39,4,'pyre_sidebar_bg_color',''),(40,4,'pyre_page_bg_layout','default'),(41,4,'pyre_page_bg',''),(42,4,'pyre_page_bg_color',''),(43,4,'pyre_page_bg_full','no'),(44,4,'pyre_page_bg_repeat','repeat'),(45,4,'pyre_wide_page_bg',''),(46,4,'pyre_wide_page_bg_color',''),(47,4,'pyre_wide_page_bg_full','no'),(48,4,'pyre_wide_page_bg_repeat','repeat'),(49,4,'pyre_portfolio_width_100','no'),(50,4,'pyre_portfolio_content_length','default'),(51,4,'pyre_portfolio_excerpt',''),(52,4,'pyre_portfolio_filters','yes'),(53,4,'pyre_portfolio_text_layout','default'),(54,4,'pyre_portfolio_featured_image_size','default'),(55,4,'pyre_portfolio_column_spacing',''),(56,4,'pyre_page_title','no'),(57,4,'pyre_page_title_text','no'),(58,4,'pyre_page_title_text_alignment','default'),(59,4,'pyre_page_title_100_width','default'),(60,4,'pyre_page_title_custom_text',''),(61,4,'pyre_page_title_text_size',''),(62,4,'pyre_page_title_custom_subheader',''),(63,4,'pyre_page_title_custom_subheader_text_size',''),(64,4,'pyre_page_title_font_color',''),(65,4,'pyre_page_title_height',''),(66,4,'pyre_page_title_mobile_height',''),(67,4,'pyre_page_title_bar_bg',''),(68,4,'pyre_page_title_bar_bg_retina',''),(69,4,'pyre_page_title_bar_bg_color',''),(70,4,'pyre_page_title_bar_borders_color',''),(71,4,'pyre_page_title_bar_bg_full','default'),(72,4,'pyre_page_title_bg_parallax','default'),(73,4,'pyre_page_title_breadcrumbs_search_bar','default'),(74,4,'fusion_builder_status','active'),(75,6,'FB_content',''),(88,7,'_menu_item_type','post_type'),(89,7,'_menu_item_menu_item_parent','0'),(90,7,'_menu_item_object_id','4'),(91,7,'_menu_item_object','page'),(92,7,'_menu_item_target',''),(93,7,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(94,7,'_menu_item_xfn',''),(95,7,'_menu_item_url',''),(96,7,'_menu_item_orphaned','1464726424'),(97,7,'_menu_item_fusion_menu_style',''),(98,7,'_menu_item_fusion_megamenu_icon',''),(99,7,'_menu_item_fusion_megamenu_status',''),(100,7,'_menu_item_fusion_megamenu_width',''),(101,7,'_menu_item_fusion_megamenu_columns',''),(102,7,'_menu_item_fusion_megamenu_columnwidth',''),(103,7,'_menu_item_fusion_megamenu_thumbnail',''),(104,8,'_menu_item_type','custom'),(105,8,'_menu_item_menu_item_parent','0'),(106,8,'_menu_item_object_id','8'),(107,8,'_menu_item_object','custom'),(108,8,'_menu_item_target',''),(109,8,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(110,8,'_menu_item_xfn',''),(111,8,'_menu_item_url','http://vantageprinters.com/vital/#home'),(113,8,'_menu_item_fusion_menu_style',''),(114,8,'_menu_item_fusion_megamenu_icon',''),(115,8,'_menu_item_fusion_megamenu_status',''),(116,8,'_menu_item_fusion_megamenu_width',''),(117,8,'_menu_item_fusion_megamenu_columns','auto'),(118,8,'_menu_item_fusion_megamenu_columnwidth',''),(119,8,'_menu_item_fusion_megamenu_thumbnail',''),(120,9,'_menu_item_type','custom'),(121,9,'_menu_item_menu_item_parent','0'),(122,9,'_menu_item_object_id','9'),(123,9,'_menu_item_object','custom'),(124,9,'_menu_item_target',''),(125,9,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(126,9,'_menu_item_xfn',''),(127,9,'_menu_item_url','http://vantageprinters.com/vital/#services'),(129,9,'_menu_item_fusion_menu_style',''),(130,9,'_menu_item_fusion_megamenu_icon',''),(131,9,'_menu_item_fusion_megamenu_status',''),(132,9,'_menu_item_fusion_megamenu_width',''),(133,9,'_menu_item_fusion_megamenu_columns','auto'),(134,9,'_menu_item_fusion_megamenu_columnwidth',''),(135,9,'_menu_item_fusion_megamenu_thumbnail',''),(136,10,'_menu_item_type','custom'),(137,10,'_menu_item_menu_item_parent','0'),(138,10,'_menu_item_object_id','10'),(139,10,'_menu_item_object','custom'),(140,10,'_menu_item_target',''),(141,10,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(142,10,'_menu_item_xfn',''),(143,10,'_menu_item_url','http://vantageprinters.com/vital/#about'),(145,10,'_menu_item_fusion_menu_style',''),(146,10,'_menu_item_fusion_megamenu_icon',''),(147,10,'_menu_item_fusion_megamenu_status',''),(148,10,'_menu_item_fusion_megamenu_width',''),(149,10,'_menu_item_fusion_megamenu_columns','auto'),(150,10,'_menu_item_fusion_megamenu_columnwidth',''),(151,10,'_menu_item_fusion_megamenu_thumbnail',''),(152,11,'_menu_item_type','custom'),(153,11,'_menu_item_menu_item_parent','0'),(154,11,'_menu_item_object_id','11'),(155,11,'_menu_item_object','custom'),(156,11,'_menu_item_target',''),(157,11,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(158,11,'_menu_item_xfn',''),(159,11,'_menu_item_url','http://vantageprinters.com/vital/#work'),(161,11,'_menu_item_fusion_menu_style',''),(162,11,'_menu_item_fusion_megamenu_icon',''),(163,11,'_menu_item_fusion_megamenu_status',''),(164,11,'_menu_item_fusion_megamenu_width',''),(165,11,'_menu_item_fusion_megamenu_columns','auto'),(166,11,'_menu_item_fusion_megamenu_columnwidth',''),(167,11,'_menu_item_fusion_megamenu_thumbnail',''),(168,12,'_menu_item_type','custom'),(169,12,'_menu_item_menu_item_parent','0'),(170,12,'_menu_item_object_id','12'),(171,12,'_menu_item_object','custom'),(172,12,'_menu_item_target',''),(173,12,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(174,12,'_menu_item_xfn',''),(175,12,'_menu_item_url','http://vantageprinters.com/vital/#culture'),(177,12,'_menu_item_fusion_menu_style',''),(178,12,'_menu_item_fusion_megamenu_icon',''),(179,12,'_menu_item_fusion_megamenu_status',''),(180,12,'_menu_item_fusion_megamenu_width',''),(181,12,'_menu_item_fusion_megamenu_columns','auto'),(182,12,'_menu_item_fusion_megamenu_columnwidth',''),(183,12,'_menu_item_fusion_megamenu_thumbnail',''),(184,13,'_menu_item_type','custom'),(186,13,'_menu_item_menu_item_parent','0'),(188,13,'_menu_item_object_id','13'),(190,13,'_menu_item_object','custom'),(192,13,'_menu_item_target',''),(194,13,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(196,13,'_menu_item_xfn',''),(198,13,'_menu_item_url','http://vantageprinters.com/vital/#careers'),(202,13,'_menu_item_fusion_menu_style',''),(204,13,'_menu_item_fusion_megamenu_icon',''),(206,13,'_menu_item_fusion_megamenu_status',''),(208,13,'_menu_item_fusion_megamenu_width',''),(210,13,'_menu_item_fusion_megamenu_columns','auto'),(212,13,'_menu_item_fusion_megamenu_columnwidth',''),(214,13,'_menu_item_fusion_megamenu_thumbnail',''),(216,15,'_menu_item_type','custom'),(217,15,'_menu_item_menu_item_parent','0'),(218,15,'_menu_item_object_id','15'),(219,15,'_menu_item_object','custom'),(220,15,'_menu_item_target',''),(221,15,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(222,15,'_menu_item_xfn',''),(223,15,'_menu_item_url','http://vantageprinters.com/vital/#contact'),(225,15,'_menu_item_fusion_menu_style',''),(226,15,'_menu_item_fusion_megamenu_icon',''),(227,15,'_menu_item_fusion_megamenu_status',''),(228,15,'_menu_item_fusion_megamenu_width',''),(229,15,'_menu_item_fusion_megamenu_columns','auto'),(230,15,'_menu_item_fusion_megamenu_columnwidth',''),(231,15,'_menu_item_fusion_megamenu_thumbnail',''),(232,16,'_menu_item_type','custom'),(233,16,'_menu_item_menu_item_parent','0'),(234,16,'_menu_item_object_id','16'),(235,16,'_menu_item_object','custom'),(236,16,'_menu_item_target',''),(237,16,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(238,16,'_menu_item_xfn',''),(239,16,'_menu_item_url','http://vantageprinters.com/vital/#blog'),(241,16,'_menu_item_fusion_menu_style',''),(242,16,'_menu_item_fusion_megamenu_icon',''),(243,16,'_menu_item_fusion_megamenu_status',''),(244,16,'_menu_item_fusion_megamenu_width',''),(245,16,'_menu_item_fusion_megamenu_columns','auto'),(246,16,'_menu_item_fusion_megamenu_columnwidth',''),(247,16,'_menu_item_fusion_megamenu_thumbnail',''),(278,18,'FB_content',''),(283,19,'_edit_last','1'),(284,19,'_edit_lock','1464801433:1'),(285,19,'pyre_type','image'),(286,19,'pyre_youtube_id',''),(287,19,'pyre_vimeo_id',''),(288,19,'pyre_webm',''),(289,19,'pyre_mp4',''),(290,19,'pyre_ogv',''),(291,19,'pyre_preview_image',''),(292,19,'pyre_aspect_ratio',''),(293,19,'pyre_video_bg_color',''),(294,19,'pyre_mute_video','yes'),(295,19,'pyre_autoplay_video','yes'),(296,19,'pyre_loop_video','yes'),(297,19,'pyre_hide_video_controls','yes'),(298,19,'pyre_content_alignment','center'),(299,19,'pyre_heading',''),(300,19,'pyre_heading_separator','none'),(301,19,'pyre_heading_font_size',''),(302,19,'pyre_heading_color',''),(303,19,'pyre_heading_bg','yes'),(304,19,'pyre_heading_bg_color',''),(305,19,'pyre_caption','<img src=\"http://localhost/vantage/wp-content/uploads/2016/06/logo.png\" alt=\"VANTAGE\">'),(306,19,'pyre_caption_separator','none'),(307,19,'pyre_caption_font_size',''),(308,19,'pyre_caption_color',''),(309,19,'pyre_caption_bg','no'),(310,19,'pyre_caption_bg_color',''),(311,19,'pyre_link_type','full'),(312,19,'pyre_slide_link',''),(313,19,'pyre_slide_target','yes'),(314,19,'pyre_button_1','[button link=\"\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]Button Text[/button]'),(315,19,'pyre_button_2','[button link=\"\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]Button Text[/button]'),(316,20,'_wp_attached_file','2016/05/01-1.jpg'),(317,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:16:\"2016/05/01-1.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"01-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"01-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"01-1-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:17:\"01-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:16:\"01-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:16:\"01-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:14:\"01-1-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:16:\"01-1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:16:\"01-1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:16:\"01-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:16:\"01-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:16:\"01-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:16:\"01-1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:16:\"01-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:16:\"01-1-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:16:\"01-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:14:\"01-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(318,19,'_thumbnail_id','48'),(327,21,'FB_content',''),(348,22,'FB_content',''),(361,23,'FB_content',''),(366,29,'_wp_attached_file','2016/05/file.mp4'),(367,29,'_wp_attachment_metadata','a:9:{s:8:\"filesize\";i:30654354;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:87;s:16:\"length_formatted\";s:4:\"1:27\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}}'),(368,28,'_edit_last','1'),(369,28,'pyre_type','self-hosted-video'),(370,28,'pyre_youtube_id',''),(371,28,'pyre_vimeo_id',''),(372,28,'pyre_webm',''),(373,28,'pyre_mp4','http://localhost/vantage/wp-content/uploads/2016/05/file.mp4'),(374,28,'pyre_ogv',''),(375,28,'pyre_preview_image',''),(376,28,'pyre_aspect_ratio',''),(377,28,'pyre_video_bg_color',''),(378,28,'pyre_mute_video','yes'),(379,28,'pyre_autoplay_video','yes'),(380,28,'pyre_loop_video','yes'),(381,28,'pyre_hide_video_controls','yes'),(382,28,'pyre_content_alignment','left'),(383,28,'pyre_heading',''),(384,28,'pyre_heading_separator','none'),(385,28,'pyre_heading_font_size',''),(386,28,'pyre_heading_color',''),(387,28,'pyre_heading_bg','yes'),(388,28,'pyre_heading_bg_color',''),(389,28,'pyre_caption',''),(390,28,'pyre_caption_separator','none'),(391,28,'pyre_caption_font_size',''),(392,28,'pyre_caption_color',''),(393,28,'pyre_caption_bg','yes'),(394,28,'pyre_caption_bg_color',''),(395,28,'pyre_link_type','full'),(396,28,'pyre_slide_link',''),(397,28,'pyre_slide_target','yes'),(398,28,'pyre_button_1','[button link=\"\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]Button Text[/button]'),(399,28,'pyre_button_2','[button link=\"\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]Button Text[/button]'),(400,28,'_edit_lock','1464747512:1'),(409,30,'FB_content',''),(422,31,'FB_content',''),(435,32,'FB_content',''),(448,33,'FB_content',''),(566,34,'FB_content',''),(597,35,'FB_content',''),(668,36,'FB_content',''),(788,37,'_wp_attached_file','2016/06/logo.png'),(789,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:198;s:4:\"file\";s:16:\"2016/06/logo.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"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:15:\"logo-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:16:\"logo-320x198.png\";s:5:\"width\";i:320;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:14:\"logo-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:16:\"logo-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:16:\"logo-540x198.png\";s:5:\"width\";i:540;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:16:\"logo-460x198.png\";s:5:\"width\";i:460;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:16:\"logo-300x198.png\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:16:\"logo-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:16:\"logo-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:16:\"logo-147x118.png\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:14:\"logo-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(811,41,'FB_content',''),(859,42,'FB_content',''),(860,4,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:17;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1464741394;}'),(861,4,'fusion_builder_content',''),(929,43,'FB_content',''),(1047,44,'_wp_attached_file','2016/05/02.jpg'),(1048,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:585;s:6:\"height\";i:397;s:4:\"file\";s:14:\"2016/05/02.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"02-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:14:\"02-585x272.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:14:\"02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:12:\"02-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:14:\"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:14:\"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:14:\"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:14:\"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:14:\"02-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:14:\"02-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:14:\"02-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:12:\"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:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1173,45,'FB_content',''),(1214,46,'FB_content',''),(1236,47,'FB_content',''),(1328,48,'_wp_attached_file','2016/05/option1.gif'),(1329,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:735;s:6:\"height\";i:414;s:4:\"file\";s:19:\"2016/05/option1.gif\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"option1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"option1-300x169.gif\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/gif\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:19:\"option1-669x272.gif\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:19:\"option1-320x202.gif\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/gif\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:17:\"option1-52x50.gif\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:19:\"option1-180x138.gif\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:19:\"option1-735x400.gif\";s:5:\"width\";i:735;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:19:\"option1-540x272.gif\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:19:\"option1-460x295.gif\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:19:\"option1-300x214.gif\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:19:\"option1-220x161.gif\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:19:\"option1-177x142.gif\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:19:\"option1-147x118.gif\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:19:\"option1-700x414.gif\";s:5:\"width\";i:700;s:6:\"height\";i:414;s:9:\"mime-type\";s:9:\"image/gif\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"option1-66x66.gif\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1366,49,'FB_content',''),(1381,51,'_wp_attached_file','2016/06/fashion.png'),(1382,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:336;s:4:\"file\";s:19:\"2016/06/fashion.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"fashion-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:\"fashion-300x224.png\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:19:\"fashion-449x272.png\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:19:\"fashion-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:17:\"fashion-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:19:\"fashion-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:\"fashion-449x272.png\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:19:\"fashion-449x295.png\";s:5:\"width\";i:449;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:19:\"fashion-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:\"fashion-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:19:\"fashion-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:19:\"fashion-147x118.png\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"fashion-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1453,52,'_wp_attached_file','2016/05/clients1.png'),(1454,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:981;s:6:\"height\";i:445;s:4:\"file\";s:20:\"2016/05/clients1.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"clients1-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:\"clients1-300x136.png\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"clients1-768x348.png\";s:5:\"width\";i:768;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"clients1-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"clients1-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:18:\"clients1-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"clients1-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"clients1-940x400.png\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"clients1-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:20:\"clients1-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:20:\"clients1-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:20:\"clients1-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:20:\"clients1-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:20:\"clients1-147x118.png\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"clients1-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:18:\"clients1-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1455,53,'_wp_attached_file','2016/05/clients2.png'),(1456,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:978;s:6:\"height\";i:454;s:4:\"file\";s:20:\"2016/05/clients2.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"clients2-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:\"clients2-300x139.png\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"clients2-768x357.png\";s:5:\"width\";i:768;s:6:\"height\";i:357;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"clients2-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"clients2-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:18:\"clients2-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"clients2-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"clients2-940x400.png\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"clients2-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:20:\"clients2-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:20:\"clients2-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:20:\"clients2-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:20:\"clients2-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:20:\"clients2-147x118.png\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"clients2-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:18:\"clients2-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1523,54,'FB_content',''),(1603,55,'FB_content',''),(1635,56,'FB_content',''),(1667,57,'FB_content',''),(1681,58,'FB_content',''),(1746,59,'FB_content',''),(1768,60,'FB_content',''),(1773,61,'_wp_attached_file','2016/05/blog.png'),(1774,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:381;s:6:\"height\";i:168;s:4:\"file\";s:16:\"2016/05/blog.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"blog-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:16:\"blog-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:16:\"blog-320x168.png\";s:5:\"width\";i:320;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:14:\"blog-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:16:\"blog-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:16:\"blog-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:16:\"blog-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:16:\"blog-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:16:\"blog-147x118.png\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:14:\"blog-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1935,62,'FB_content',''),(2026,63,'FB_content',''),(2128,64,'FB_content',''),(2150,65,'FB_content',''),(2173,66,'FB_content',''),(2215,67,'FB_content',''),(2220,68,'_form','<div class=\"form-contact\">\n<div class=\"form-left\">\n<p>[text* your-name placeholder \"Name\"]</p>\n\n<p>[email* your-email placeholder \"Email\"] </p>\n\n<p>[text your-subject placeholder \"Subject\"] </p>\n</div>\n<div class=\"form-right\">\n\n<p>[textarea your-message placeholder \"Message\"] </p>\n\n<p>[submit \"Send\"]</p>\n</div>\n</div>'),(2221,68,'_mail','a:8:{s:7:\"subject\";s:49:\"Message from VantagePrinters.com \"[your-subject]\"\";s:6:\"sender\";s:49:\"[your-name] <wordpress@vantageprinters.com/vital>\";s:4:\"body\";s:177:\"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 www.vantage.com (http://localhost/vantage)\";s:9:\"recipient\";s:31:\"saqib@vantageprinters.com/vital\";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;}'),(2222,68,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:32:\"www.vantage.com \"[your-subject]\"\";s:6:\"sender\";s:41:\"www.vantage.com <faran_ahmad86@yahoo.com>\";s:4:\"body\";s:119:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on www.vantage.com (http://localhost/vantage)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:33:\"Reply-To: faran_ahmad86@yahoo.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2223,68,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2224,68,'_additional_settings',''),(2225,68,'_locale','en_US'),(2261,69,'FB_content',''),(2320,70,'FB_content',''),(2417,71,'FB_content',''),(2439,72,'FB_content',''),(2499,73,'FB_content',''),(2521,74,'FB_content',''),(2621,77,'_wp_attached_file','2016/06/590e88_1d7c24ef047b4e8580d8d345e3ce269c.jpg'),(2622,77,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5616;s:6:\"height\";i:3744;s:4:\"file\";s:51:\"2016/06/590e88_1d7c24ef047b4e8580d8d345e3ce269c.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-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:52:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:49:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-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:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-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:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-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:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:51:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-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:49:\"590e88_1d7c24ef047b4e8580d8d345e3ce269c-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\";s:1:\"8\";s:6:\"credit\";s:24:\"Photographer:saqibmoghal\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1387903403\";s:9:\"copyright\";s:15:\"Copyright:canon\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2623,78,'_wp_attached_file','2016/06/590e88_5d9abc7a52db42b5913859b073af3b2c.jpg'),(2624,78,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5616;s:6:\"height\";i:3744;s:4:\"file\";s:51:\"2016/06/590e88_5d9abc7a52db42b5913859b073af3b2c.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-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:52:\"590e88_5d9abc7a52db42b5913859b073af3b2c-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:49:\"590e88_5d9abc7a52db42b5913859b073af3b2c-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-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:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-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:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-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:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:51:\"590e88_5d9abc7a52db42b5913859b073af3b2c-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:49:\"590e88_5d9abc7a52db42b5913859b073af3b2c-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\";s:2:\"16\";s:6:\"credit\";s:19:\"Photographer:Arslan\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1433870997\";s:9:\"copyright\";s:15:\"Copyright:canon\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2625,79,'_wp_attached_file','2016/06/590e88_26cba0703ca34423b7ab153fcf1571a8.jpg'),(2626,79,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:51:\"2016/06/590e88_26cba0703ca34423b7ab153fcf1571a8.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:49:\"590e88_26cba0703ca34423b7ab153fcf1571a8-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-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:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-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:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-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:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:51:\"590e88_26cba0703ca34423b7ab153fcf1571a8-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:49:\"590e88_26cba0703ca34423b7ab153fcf1571a8-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2627,80,'_wp_attached_file','2016/06/590e88_48c4602c9fd64d84b89f89c3f232f692.jpg'),(2628,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4385;s:6:\"height\";i:2863;s:4:\"file\";s:51:\"2016/06/590e88_48c4602c9fd64d84b89f89c3f232f692.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-768x501.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"590e88_48c4602c9fd64d84b89f89c3f232f692-1024x669.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:669;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:49:\"590e88_48c4602c9fd64d84b89f89c3f232f692-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-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:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-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:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-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:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:51:\"590e88_48c4602c9fd64d84b89f89c3f232f692-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:49:\"590e88_48c4602c9fd64d84b89f89c3f232f692-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2629,81,'_wp_attached_file','2016/06/590e88_a178af1ade0a4f3a84cc65a14844221c.jpg'),(2630,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:51:\"2016/06/590e88_a178af1ade0a4f3a84cc65a14844221c.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"590e88_a178af1ade0a4f3a84cc65a14844221c-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:49:\"590e88_a178af1ade0a4f3a84cc65a14844221c-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-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:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-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:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-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:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:51:\"590e88_a178af1ade0a4f3a84cc65a14844221c-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:49:\"590e88_a178af1ade0a4f3a84cc65a14844221c-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2631,82,'_wp_attached_file','2016/06/590e88_ae2d54bb38e243aa9446b6d5b88f6b84.jpg'),(2632,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:51:\"2016/06/590e88_ae2d54bb38e243aa9446b6d5b88f6b84.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:49:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-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:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-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:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-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:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:51:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-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:49:\"590e88_ae2d54bb38e243aa9446b6d5b88f6b84-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2633,83,'_wp_attached_file','2016/06/590e88_b8cafdfdd3fd4f839cf47437bf61eb31.jpg'),(2634,84,'_wp_attached_file','2016/06/590e88_c7881ba34f2a4a0487a141964055de97.jpg'),(2635,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:6350;s:6:\"height\";i:3969;s:4:\"file\";s:51:\"2016/06/590e88_c7881ba34f2a4a0487a141964055de97.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"590e88_c7881ba34f2a4a0487a141964055de97-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"590e88_c7881ba34f2a4a0487a141964055de97-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"590e88_c7881ba34f2a4a0487a141964055de97-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"590e88_c7881ba34f2a4a0487a141964055de97-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:51:\"590e88_c7881ba34f2a4a0487a141964055de97-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:51:\"590e88_c7881ba34f2a4a0487a141964055de97-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:49:\"590e88_c7881ba34f2a4a0487a141964055de97-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:51:\"590e88_c7881ba34f2a4a0487a141964055de97-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:51:\"590e88_c7881ba34f2a4a0487a141964055de97-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:51:\"590e88_c7881ba34f2a4a0487a141964055de97-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:51:\"590e88_c7881ba34f2a4a0487a141964055de97-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:51:\"590e88_c7881ba34f2a4a0487a141964055de97-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:51:\"590e88_c7881ba34f2a4a0487a141964055de97-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:51:\"590e88_c7881ba34f2a4a0487a141964055de97-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:51:\"590e88_c7881ba34f2a4a0487a141964055de97-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:51:\"590e88_c7881ba34f2a4a0487a141964055de97-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:49:\"590e88_c7881ba34f2a4a0487a141964055de97-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2678,87,'FB_content',''),(2687,88,'FB_content',''),(2708,89,'FB_content',''),(2721,90,'FB_content',''),(2726,91,'FB_content',''),(2735,92,'FB_content',''),(2745,4,'slide_template','default'),(2758,94,'FB_content',''),(2771,95,'FB_content',''),(2784,96,'FB_content',''),(2797,97,'FB_content',''),(2810,98,'FB_content',''),(2824,99,'FB_content',''),(2831,101,'_edit_last','1'),(2832,101,'_edit_lock','1464813846:1'),(2833,103,'_edit_last','1'),(2834,103,'_edit_lock','1464813850:1'),(2835,102,'_edit_last','1'),(2836,102,'_edit_lock','1464813848:1'),(2837,104,'_wp_attached_file','2016/06/Healthcare.jpg'),(2838,104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:336;s:4:\"file\";s:22:\"2016/06/Healthcare.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Healthcare-150x150.jpg\";s:5:\"width\";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:\"Healthcare-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:22:\"Healthcare-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:22:\"Healthcare-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:20:\"Healthcare-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"Healthcare-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:\"Healthcare-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"Healthcare-449x295.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"Healthcare-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:\"Healthcare-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:22:\"Healthcare-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:22:\"Healthcare-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"Healthcare-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2839,105,'_wp_attached_file','2016/06/Automotive.jpg'),(2840,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:336;s:4:\"file\";s:22:\"2016/06/Automotive.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Automotive-150x150.jpg\";s:5:\"width\";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:\"Automotive-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:22:\"Automotive-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:22:\"Automotive-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:20:\"Automotive-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"Automotive-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:\"Automotive-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"Automotive-449x295.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"Automotive-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:\"Automotive-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:22:\"Automotive-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:22:\"Automotive-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"Automotive-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:19:\"Panamera S E-Hybrid\";s:17:\"created_timestamp\";s:10:\"1363795632\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:19:\"Panamera S E-Hybrid\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2841,106,'_wp_attached_file','2016/06/fashion-1.png'),(2842,106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:336;s:4:\"file\";s:21:\"2016/06/fashion-1.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"fashion-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"fashion-1-300x224.png\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:21:\"fashion-1-449x272.png\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:21:\"fashion-1-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:19:\"fashion-1-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"fashion-1-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:\"fashion-1-449x272.png\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"fashion-1-449x295.png\";s:5:\"width\";i:449;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"fashion-1-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:\"fashion-1-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:21:\"fashion-1-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:21:\"fashion-1-147x118.png\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"fashion-1-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2843,101,'_thumbnail_id','106'),(2848,101,'slide_template','default'),(2853,101,'pyre_show_first_featured_image','no'),(2854,101,'pyre_portfolio_width_100','default'),(2855,101,'pyre_video',''),(2856,101,'pyre_fimg_width',''),(2857,101,'pyre_fimg_height',''),(2858,101,'pyre_image_rollover_icons','default'),(2859,101,'pyre_link_icon_url',''),(2860,101,'pyre_post_links_target','no'),(2861,101,'pyre_related_posts','default'),(2862,101,'pyre_share_box','default'),(2863,101,'pyre_post_pagination','default'),(2864,101,'pyre_author_info','default'),(2865,101,'pyre_post_meta','default'),(2866,101,'pyre_post_comments','default'),(2867,101,'pyre_main_top_padding',''),(2868,101,'pyre_main_bottom_padding',''),(2869,101,'pyre_hundredp_padding',''),(2870,101,'pyre_slider_position','default'),(2871,101,'pyre_slider_type','no'),(2872,101,'pyre_slider','0'),(2873,101,'pyre_wooslider','0'),(2874,101,'pyre_revslider','0'),(2875,101,'pyre_elasticslider','0'),(2876,101,'pyre_fallback',''),(2877,101,'pyre_avada_rev_styles','default'),(2878,101,'pyre_display_header','yes'),(2879,101,'pyre_header_100_width','default'),(2880,101,'pyre_header_bg',''),(2881,101,'pyre_header_bg_color',''),(2882,101,'pyre_header_bg_opacity',''),(2883,101,'pyre_header_bg_full','no'),(2884,101,'pyre_header_bg_repeat','repeat'),(2885,101,'pyre_displayed_menu','default'),(2886,101,'pyre_display_footer','default'),(2887,101,'pyre_display_copyright','default'),(2888,101,'pyre_footer_100_width','default'),(2889,101,'pyre_sidebar_position','default'),(2890,101,'pyre_sidebar_bg_color',''),(2891,101,'pyre_page_bg_layout','default'),(2892,101,'pyre_page_bg',''),(2893,101,'pyre_page_bg_color',''),(2894,101,'pyre_page_bg_full','no'),(2895,101,'pyre_page_bg_repeat','repeat'),(2896,101,'pyre_wide_page_bg',''),(2897,101,'pyre_wide_page_bg_color',''),(2898,101,'pyre_wide_page_bg_full','no'),(2899,101,'pyre_wide_page_bg_repeat','repeat'),(2900,101,'pyre_page_title','default'),(2901,101,'pyre_page_title_text','default'),(2902,101,'pyre_page_title_text_alignment','default'),(2903,101,'pyre_page_title_100_width','default'),(2904,101,'pyre_page_title_custom_text',''),(2905,101,'pyre_page_title_text_size',''),(2906,101,'pyre_page_title_custom_subheader',''),(2907,101,'pyre_page_title_custom_subheader_text_size',''),(2908,101,'pyre_page_title_font_color',''),(2909,101,'pyre_page_title_height',''),(2910,101,'pyre_page_title_mobile_height',''),(2911,101,'pyre_page_title_bar_bg',''),(2912,101,'pyre_page_title_bar_bg_retina',''),(2913,101,'pyre_page_title_bar_bg_color',''),(2914,101,'pyre_page_title_bar_borders_color',''),(2915,101,'pyre_page_title_bar_bg_full','default'),(2916,101,'pyre_page_title_bg_parallax','default'),(2917,101,'pyre_page_title_breadcrumbs_search_bar','default'),(2918,103,'_thumbnail_id','104'),(2923,103,'slide_template','default'),(2924,103,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(2925,103,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(2926,103,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(2927,103,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(2928,103,'pyre_show_first_featured_image','no'),(2929,103,'pyre_portfolio_width_100','default'),(2930,103,'pyre_video',''),(2931,103,'pyre_fimg_width',''),(2932,103,'pyre_fimg_height',''),(2933,103,'pyre_image_rollover_icons','default'),(2934,103,'pyre_link_icon_url',''),(2935,103,'pyre_post_links_target','no'),(2936,103,'pyre_related_posts','default'),(2937,103,'pyre_share_box','default'),(2938,103,'pyre_post_pagination','default'),(2939,103,'pyre_author_info','default'),(2940,103,'pyre_post_meta','default'),(2941,103,'pyre_post_comments','default'),(2942,103,'pyre_main_top_padding',''),(2943,103,'pyre_main_bottom_padding',''),(2944,103,'pyre_hundredp_padding',''),(2945,103,'pyre_slider_position','default'),(2946,103,'pyre_slider_type','no'),(2947,103,'pyre_slider','0'),(2948,103,'pyre_wooslider','0'),(2949,103,'pyre_revslider','0'),(2950,103,'pyre_elasticslider','0'),(2951,103,'pyre_fallback',''),(2952,103,'pyre_avada_rev_styles','default'),(2953,103,'pyre_display_header','yes'),(2954,103,'pyre_header_100_width','default'),(2955,103,'pyre_header_bg',''),(2956,103,'pyre_header_bg_color',''),(2957,103,'pyre_header_bg_opacity',''),(2958,103,'pyre_header_bg_full','no'),(2959,103,'pyre_header_bg_repeat','repeat'),(2960,103,'pyre_displayed_menu','default'),(2961,103,'pyre_display_footer','default'),(2962,103,'pyre_display_copyright','default'),(2963,103,'pyre_footer_100_width','default'),(2964,103,'pyre_sidebar_position','default'),(2965,103,'pyre_sidebar_bg_color',''),(2966,103,'pyre_page_bg_layout','default'),(2967,103,'pyre_page_bg',''),(2968,103,'pyre_page_bg_color',''),(2969,103,'pyre_page_bg_full','no'),(2970,103,'pyre_page_bg_repeat','repeat'),(2971,103,'pyre_wide_page_bg',''),(2972,103,'pyre_wide_page_bg_color',''),(2973,103,'pyre_wide_page_bg_full','no'),(2974,103,'pyre_wide_page_bg_repeat','repeat'),(2975,103,'pyre_page_title','default'),(2976,103,'pyre_page_title_text','default'),(2977,103,'pyre_page_title_text_alignment','default'),(2978,103,'pyre_page_title_100_width','default'),(2979,103,'pyre_page_title_custom_text',''),(2980,103,'pyre_page_title_text_size',''),(2981,103,'pyre_page_title_custom_subheader',''),(2982,103,'pyre_page_title_custom_subheader_text_size',''),(2983,103,'pyre_page_title_font_color',''),(2984,103,'pyre_page_title_height',''),(2985,103,'pyre_page_title_mobile_height',''),(2986,103,'pyre_page_title_bar_bg',''),(2987,103,'pyre_page_title_bar_bg_retina',''),(2988,103,'pyre_page_title_bar_bg_color',''),(2989,103,'pyre_page_title_bar_borders_color',''),(2990,103,'pyre_page_title_bar_bg_full','default'),(2991,103,'pyre_page_title_bg_parallax','default'),(2992,103,'pyre_page_title_breadcrumbs_search_bar','default'),(2993,102,'_thumbnail_id','105'),(2998,102,'slide_template','default'),(2999,102,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3000,102,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3001,102,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3002,102,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3003,102,'pyre_show_first_featured_image','no'),(3004,102,'pyre_portfolio_width_100','default'),(3005,102,'pyre_video',''),(3006,102,'pyre_fimg_width',''),(3007,102,'pyre_fimg_height',''),(3008,102,'pyre_image_rollover_icons','default'),(3009,102,'pyre_link_icon_url',''),(3010,102,'pyre_post_links_target','no'),(3011,102,'pyre_related_posts','default'),(3012,102,'pyre_share_box','default'),(3013,102,'pyre_post_pagination','default'),(3014,102,'pyre_author_info','default'),(3015,102,'pyre_post_meta','default'),(3016,102,'pyre_post_comments','default'),(3017,102,'pyre_main_top_padding',''),(3018,102,'pyre_main_bottom_padding',''),(3019,102,'pyre_hundredp_padding',''),(3020,102,'pyre_slider_position','default'),(3021,102,'pyre_slider_type','no'),(3022,102,'pyre_slider','0'),(3023,102,'pyre_wooslider','0'),(3024,102,'pyre_revslider','0'),(3025,102,'pyre_elasticslider','0'),(3026,102,'pyre_fallback',''),(3027,102,'pyre_avada_rev_styles','default'),(3028,102,'pyre_display_header','yes'),(3029,102,'pyre_header_100_width','default'),(3030,102,'pyre_header_bg',''),(3031,102,'pyre_header_bg_color',''),(3032,102,'pyre_header_bg_opacity',''),(3033,102,'pyre_header_bg_full','no'),(3034,102,'pyre_header_bg_repeat','repeat'),(3035,102,'pyre_displayed_menu','default'),(3036,102,'pyre_display_footer','default'),(3037,102,'pyre_display_copyright','default'),(3038,102,'pyre_footer_100_width','default'),(3039,102,'pyre_sidebar_position','default'),(3040,102,'pyre_sidebar_bg_color',''),(3041,102,'pyre_page_bg_layout','default'),(3042,102,'pyre_page_bg',''),(3043,102,'pyre_page_bg_color',''),(3044,102,'pyre_page_bg_full','no'),(3045,102,'pyre_page_bg_repeat','repeat'),(3046,102,'pyre_wide_page_bg',''),(3047,102,'pyre_wide_page_bg_color',''),(3048,102,'pyre_wide_page_bg_full','no'),(3049,102,'pyre_wide_page_bg_repeat','repeat'),(3050,102,'pyre_page_title','default'),(3051,102,'pyre_page_title_text','default'),(3052,102,'pyre_page_title_text_alignment','default'),(3053,102,'pyre_page_title_100_width','default'),(3054,102,'pyre_page_title_custom_text',''),(3055,102,'pyre_page_title_text_size',''),(3056,102,'pyre_page_title_custom_subheader',''),(3057,102,'pyre_page_title_custom_subheader_text_size',''),(3058,102,'pyre_page_title_font_color',''),(3059,102,'pyre_page_title_height',''),(3060,102,'pyre_page_title_mobile_height',''),(3061,102,'pyre_page_title_bar_bg',''),(3062,102,'pyre_page_title_bar_bg_retina',''),(3063,102,'pyre_page_title_bar_bg_color',''),(3064,102,'pyre_page_title_bar_borders_color',''),(3065,102,'pyre_page_title_bar_bg_full','default'),(3066,102,'pyre_page_title_bg_parallax','default'),(3067,102,'pyre_page_title_breadcrumbs_search_bar','default'),(3072,101,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3073,101,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3074,101,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3075,101,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3076,107,'FB_content',''),(3085,108,'FB_content',''),(3098,112,'FB_content',''),(3103,110,'_edit_last','1'),(3104,110,'_edit_lock','1464814453:1'),(3105,109,'_edit_last','1'),(3106,109,'_edit_lock','1464814320:1'),(3107,111,'_edit_last','1'),(3108,111,'_edit_lock','1464814402:1'),(3109,110,'_thumbnail_id','104'),(3110,109,'_thumbnail_id','105'),(3115,110,'slide_template','default'),(3120,110,'pyre_width','default'),(3121,110,'pyre_portfolio_width_100','default'),(3122,110,'pyre_project_desc_title','default'),(3123,110,'pyre_project_details','default'),(3124,110,'pyre_show_first_featured_image','default'),(3125,110,'pyre_video',''),(3126,110,'pyre_video_url',''),(3127,110,'pyre_project_url',''),(3128,110,'pyre_project_url_text',''),(3129,110,'pyre_copy_url',''),(3130,110,'pyre_copy_url_text',''),(3131,110,'pyre_fimg_width',''),(3132,110,'pyre_fimg_height',''),(3133,110,'pyre_image_rollover_icons','default'),(3134,110,'pyre_link_icon_url',''),(3135,110,'pyre_link_icon_target','default'),(3136,110,'pyre_related_posts','default'),(3137,110,'pyre_share_box','default'),(3138,110,'pyre_post_pagination','default'),(3139,110,'pyre_main_top_padding',''),(3140,110,'pyre_main_bottom_padding',''),(3141,110,'pyre_hundredp_padding',''),(3142,110,'pyre_slider_position','default'),(3143,110,'pyre_slider_type','no'),(3144,110,'pyre_slider','0'),(3145,110,'pyre_wooslider','0'),(3146,110,'pyre_revslider','0'),(3147,110,'pyre_elasticslider','0'),(3148,110,'pyre_fallback',''),(3149,110,'pyre_avada_rev_styles','default'),(3150,110,'pyre_display_header','yes'),(3151,110,'pyre_header_100_width','default'),(3152,110,'pyre_header_bg',''),(3153,110,'pyre_header_bg_color',''),(3154,110,'pyre_header_bg_opacity',''),(3155,110,'pyre_header_bg_full','no'),(3156,110,'pyre_header_bg_repeat','repeat'),(3157,110,'pyre_displayed_menu','default'),(3158,110,'pyre_display_footer','default'),(3159,110,'pyre_display_copyright','default'),(3160,110,'pyre_footer_100_width','default'),(3161,110,'pyre_sidebar_position','default'),(3162,110,'pyre_sidebar_bg_color',''),(3163,110,'pyre_page_bg_layout','default'),(3164,110,'pyre_page_bg',''),(3165,110,'pyre_page_bg_color',''),(3166,110,'pyre_page_bg_full','no'),(3167,110,'pyre_page_bg_repeat','repeat'),(3168,110,'pyre_wide_page_bg',''),(3169,110,'pyre_wide_page_bg_color',''),(3170,110,'pyre_wide_page_bg_full','no'),(3171,110,'pyre_wide_page_bg_repeat','repeat'),(3172,110,'pyre_page_title','default'),(3173,110,'pyre_page_title_text','default'),(3174,110,'pyre_page_title_text_alignment','default'),(3175,110,'pyre_page_title_100_width','default'),(3176,110,'pyre_page_title_custom_text',''),(3177,110,'pyre_page_title_text_size',''),(3178,110,'pyre_page_title_custom_subheader',''),(3179,110,'pyre_page_title_custom_subheader_text_size',''),(3180,110,'pyre_page_title_font_color',''),(3181,110,'pyre_page_title_height',''),(3182,110,'pyre_page_title_mobile_height',''),(3183,110,'pyre_page_title_bar_bg',''),(3184,110,'pyre_page_title_bar_bg_retina',''),(3185,110,'pyre_page_title_bar_bg_color',''),(3186,110,'pyre_page_title_bar_borders_color',''),(3187,110,'pyre_page_title_bar_bg_full','default'),(3188,110,'pyre_page_title_bg_parallax','default'),(3189,110,'pyre_page_title_breadcrumbs_search_bar','default'),(3190,110,'fusion_builder_status','inactive'),(3191,113,'FB_content',''),(3192,110,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3193,110,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3194,110,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3195,110,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3200,109,'slide_template','default'),(3205,109,'pyre_width','default'),(3206,109,'pyre_portfolio_width_100','default'),(3207,109,'pyre_project_desc_title','default'),(3208,109,'pyre_project_details','default'),(3209,109,'pyre_show_first_featured_image','default'),(3210,109,'pyre_video',''),(3211,109,'pyre_video_url',''),(3212,109,'pyre_project_url',''),(3213,109,'pyre_project_url_text',''),(3214,109,'pyre_copy_url',''),(3215,109,'pyre_copy_url_text',''),(3216,109,'pyre_fimg_width',''),(3217,109,'pyre_fimg_height',''),(3218,109,'pyre_image_rollover_icons','default'),(3219,109,'pyre_link_icon_url',''),(3220,109,'pyre_link_icon_target','default'),(3221,109,'pyre_related_posts','default'),(3222,109,'pyre_share_box','default'),(3223,109,'pyre_post_pagination','default'),(3224,109,'pyre_main_top_padding',''),(3225,109,'pyre_main_bottom_padding',''),(3226,109,'pyre_hundredp_padding',''),(3227,109,'pyre_slider_position','default'),(3228,109,'pyre_slider_type','no'),(3229,109,'pyre_slider','0'),(3230,109,'pyre_wooslider','0'),(3231,109,'pyre_revslider','0'),(3232,109,'pyre_elasticslider','0'),(3233,109,'pyre_fallback',''),(3234,109,'pyre_avada_rev_styles','default'),(3235,109,'pyre_display_header','yes'),(3236,109,'pyre_header_100_width','default'),(3237,109,'pyre_header_bg',''),(3238,109,'pyre_header_bg_color',''),(3239,109,'pyre_header_bg_opacity',''),(3240,109,'pyre_header_bg_full','no'),(3241,109,'pyre_header_bg_repeat','repeat'),(3242,109,'pyre_displayed_menu','default'),(3243,109,'pyre_display_footer','default'),(3244,109,'pyre_display_copyright','default'),(3245,109,'pyre_footer_100_width','default'),(3246,109,'pyre_sidebar_position','default'),(3247,109,'pyre_sidebar_bg_color',''),(3248,109,'pyre_page_bg_layout','default'),(3249,109,'pyre_page_bg',''),(3250,109,'pyre_page_bg_color',''),(3251,109,'pyre_page_bg_full','no'),(3252,109,'pyre_page_bg_repeat','repeat'),(3253,109,'pyre_wide_page_bg',''),(3254,109,'pyre_wide_page_bg_color',''),(3255,109,'pyre_wide_page_bg_full','no'),(3256,109,'pyre_wide_page_bg_repeat','repeat'),(3257,109,'pyre_page_title','default'),(3258,109,'pyre_page_title_text','default'),(3259,109,'pyre_page_title_text_alignment','default'),(3260,109,'pyre_page_title_100_width','default'),(3261,109,'pyre_page_title_custom_text',''),(3262,109,'pyre_page_title_text_size',''),(3263,109,'pyre_page_title_custom_subheader',''),(3264,109,'pyre_page_title_custom_subheader_text_size',''),(3265,109,'pyre_page_title_font_color',''),(3266,109,'pyre_page_title_height',''),(3267,109,'pyre_page_title_mobile_height',''),(3268,109,'pyre_page_title_bar_bg',''),(3269,109,'pyre_page_title_bar_bg_retina',''),(3270,109,'pyre_page_title_bar_bg_color',''),(3271,109,'pyre_page_title_bar_borders_color',''),(3272,109,'pyre_page_title_bar_bg_full','default'),(3273,109,'pyre_page_title_bg_parallax','default'),(3274,109,'pyre_page_title_breadcrumbs_search_bar','default'),(3275,109,'fusion_builder_status','inactive'),(3276,114,'FB_content',''),(3277,109,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3278,109,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3279,109,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3280,109,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3281,111,'_thumbnail_id','106'),(3286,111,'slide_template','default'),(3291,111,'pyre_width','default'),(3292,111,'pyre_portfolio_width_100','default'),(3293,111,'pyre_project_desc_title','default'),(3294,111,'pyre_project_details','default'),(3295,111,'pyre_show_first_featured_image','default'),(3296,111,'pyre_video',''),(3297,111,'pyre_video_url',''),(3298,111,'pyre_project_url',''),(3299,111,'pyre_project_url_text',''),(3300,111,'pyre_copy_url',''),(3301,111,'pyre_copy_url_text',''),(3302,111,'pyre_fimg_width',''),(3303,111,'pyre_fimg_height',''),(3304,111,'pyre_image_rollover_icons','default'),(3305,111,'pyre_link_icon_url',''),(3306,111,'pyre_link_icon_target','default'),(3307,111,'pyre_related_posts','default'),(3308,111,'pyre_share_box','default'),(3309,111,'pyre_post_pagination','default'),(3310,111,'pyre_main_top_padding',''),(3311,111,'pyre_main_bottom_padding',''),(3312,111,'pyre_hundredp_padding',''),(3313,111,'pyre_slider_position','default'),(3314,111,'pyre_slider_type','no'),(3315,111,'pyre_slider','0'),(3316,111,'pyre_wooslider','0'),(3317,111,'pyre_revslider','0'),(3318,111,'pyre_elasticslider','0'),(3319,111,'pyre_fallback',''),(3320,111,'pyre_avada_rev_styles','default'),(3321,111,'pyre_display_header','yes'),(3322,111,'pyre_header_100_width','default'),(3323,111,'pyre_header_bg',''),(3324,111,'pyre_header_bg_color',''),(3325,111,'pyre_header_bg_opacity',''),(3326,111,'pyre_header_bg_full','no'),(3327,111,'pyre_header_bg_repeat','repeat'),(3328,111,'pyre_displayed_menu','default'),(3329,111,'pyre_display_footer','default'),(3330,111,'pyre_display_copyright','default'),(3331,111,'pyre_footer_100_width','default'),(3332,111,'pyre_sidebar_position','default'),(3333,111,'pyre_sidebar_bg_color',''),(3334,111,'pyre_page_bg_layout','default'),(3335,111,'pyre_page_bg',''),(3336,111,'pyre_page_bg_color',''),(3337,111,'pyre_page_bg_full','no'),(3338,111,'pyre_page_bg_repeat','repeat'),(3339,111,'pyre_wide_page_bg',''),(3340,111,'pyre_wide_page_bg_color',''),(3341,111,'pyre_wide_page_bg_full','no'),(3342,111,'pyre_wide_page_bg_repeat','repeat'),(3343,111,'pyre_page_title','default'),(3344,111,'pyre_page_title_text','default'),(3345,111,'pyre_page_title_text_alignment','default'),(3346,111,'pyre_page_title_100_width','default'),(3347,111,'pyre_page_title_custom_text',''),(3348,111,'pyre_page_title_text_size',''),(3349,111,'pyre_page_title_custom_subheader',''),(3350,111,'pyre_page_title_custom_subheader_text_size',''),(3351,111,'pyre_page_title_font_color',''),(3352,111,'pyre_page_title_height',''),(3353,111,'pyre_page_title_mobile_height',''),(3354,111,'pyre_page_title_bar_bg',''),(3355,111,'pyre_page_title_bar_bg_retina',''),(3356,111,'pyre_page_title_bar_bg_color',''),(3357,111,'pyre_page_title_bar_borders_color',''),(3358,111,'pyre_page_title_bar_bg_full','default'),(3359,111,'pyre_page_title_bg_parallax','default'),(3360,111,'pyre_page_title_breadcrumbs_search_bar','default'),(3361,111,'fusion_builder_status','inactive'),(3362,115,'FB_content',''),(3363,111,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3364,111,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3365,111,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3366,111,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3375,116,'FB_content',''),(3388,117,'FB_content',''),(3393,120,'_edit_last','1'),(3394,120,'_edit_lock','1464838072:1'),(3395,118,'_edit_last','1'),(3396,118,'_edit_lock','1464838071:1'),(3397,119,'_edit_last','1'),(3398,119,'_edit_lock','1464838070:1'),(3399,121,'_wp_attached_file','2016/06/Real-Estate.jpg'),(3400,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:336;s:4:\"file\";s:23:\"2016/06/Real-Estate.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Real-Estate-150x150.jpg\";s:5:\"width\";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:\"Real-Estate-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:23:\"Real-Estate-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:23:\"Real-Estate-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:21:\"Real-Estate-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Real-Estate-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:\"Real-Estate-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Real-Estate-449x295.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Real-Estate-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:\"Real-Estate-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:23:\"Real-Estate-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:23:\"Real-Estate-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Real-Estate-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3401,122,'_wp_attached_file','2016/06/Telecommunication.jpg'),(3402,122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:336;s:4:\"file\";s:29:\"2016/06/Telecommunication.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Telecommunication-150x150.jpg\";s:5:\"width\";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:\"Telecommunication-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:29:\"Telecommunication-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:29:\"Telecommunication-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:27:\"Telecommunication-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:29:\"Telecommunication-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:\"Telecommunication-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:29:\"Telecommunication-449x295.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:29:\"Telecommunication-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:\"Telecommunication-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:29:\"Telecommunication-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:29:\"Telecommunication-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:27:\"Telecommunication-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3403,123,'_wp_attached_file','2016/06/Beauty.jpg'),(3404,123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:336;s:4:\"file\";s:18:\"2016/06/Beauty.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Beauty-150x150.jpg\";s:5:\"width\";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:\"Beauty-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:18:\"Beauty-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:18:\"Beauty-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:16:\"Beauty-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"Beauty-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:\"Beauty-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:18:\"Beauty-449x295.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:18:\"Beauty-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:\"Beauty-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:18:\"Beauty-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:18:\"Beauty-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"Beauty-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\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D5100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1394554114\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3405,119,'_thumbnail_id','123'),(3406,118,'_thumbnail_id','121'),(3407,120,'_thumbnail_id','122'),(3412,120,'slide_template','default'),(3417,120,'pyre_width','default'),(3418,120,'pyre_portfolio_width_100','default'),(3419,120,'pyre_project_desc_title','default'),(3420,120,'pyre_project_details','default'),(3421,120,'pyre_show_first_featured_image','default'),(3422,120,'pyre_video',''),(3423,120,'pyre_video_url',''),(3424,120,'pyre_project_url',''),(3425,120,'pyre_project_url_text',''),(3426,120,'pyre_copy_url',''),(3427,120,'pyre_copy_url_text',''),(3428,120,'pyre_fimg_width',''),(3429,120,'pyre_fimg_height',''),(3430,120,'pyre_image_rollover_icons','default'),(3431,120,'pyre_link_icon_url',''),(3432,120,'pyre_link_icon_target','default'),(3433,120,'pyre_related_posts','default'),(3434,120,'pyre_share_box','default'),(3435,120,'pyre_post_pagination','default'),(3436,120,'pyre_main_top_padding',''),(3437,120,'pyre_main_bottom_padding',''),(3438,120,'pyre_hundredp_padding',''),(3439,120,'pyre_slider_position','default'),(3440,120,'pyre_slider_type','no'),(3441,120,'pyre_slider','0'),(3442,120,'pyre_wooslider','0'),(3443,120,'pyre_revslider','0'),(3444,120,'pyre_elasticslider','0'),(3445,120,'pyre_fallback',''),(3446,120,'pyre_avada_rev_styles','default'),(3447,120,'pyre_display_header','yes'),(3448,120,'pyre_header_100_width','default'),(3449,120,'pyre_header_bg',''),(3450,120,'pyre_header_bg_color',''),(3451,120,'pyre_header_bg_opacity',''),(3452,120,'pyre_header_bg_full','no'),(3453,120,'pyre_header_bg_repeat','repeat'),(3454,120,'pyre_displayed_menu','default'),(3455,120,'pyre_display_footer','default'),(3456,120,'pyre_display_copyright','default'),(3457,120,'pyre_footer_100_width','default'),(3458,120,'pyre_sidebar_position','default'),(3459,120,'pyre_sidebar_bg_color',''),(3460,120,'pyre_page_bg_layout','default'),(3461,120,'pyre_page_bg',''),(3462,120,'pyre_page_bg_color',''),(3463,120,'pyre_page_bg_full','no'),(3464,120,'pyre_page_bg_repeat','repeat'),(3465,120,'pyre_wide_page_bg',''),(3466,120,'pyre_wide_page_bg_color',''),(3467,120,'pyre_wide_page_bg_full','no'),(3468,120,'pyre_wide_page_bg_repeat','repeat'),(3469,120,'pyre_page_title','default'),(3470,120,'pyre_page_title_text','default'),(3471,120,'pyre_page_title_text_alignment','default'),(3472,120,'pyre_page_title_100_width','default'),(3473,120,'pyre_page_title_custom_text',''),(3474,120,'pyre_page_title_text_size',''),(3475,120,'pyre_page_title_custom_subheader',''),(3476,120,'pyre_page_title_custom_subheader_text_size',''),(3477,120,'pyre_page_title_font_color',''),(3478,120,'pyre_page_title_height',''),(3479,120,'pyre_page_title_mobile_height',''),(3480,120,'pyre_page_title_bar_bg',''),(3481,120,'pyre_page_title_bar_bg_retina',''),(3482,120,'pyre_page_title_bar_bg_color',''),(3483,120,'pyre_page_title_bar_borders_color',''),(3484,120,'pyre_page_title_bar_bg_full','default'),(3485,120,'pyre_page_title_bg_parallax','default'),(3486,120,'pyre_page_title_breadcrumbs_search_bar','default'),(3487,120,'fusion_builder_status','inactive'),(3488,124,'FB_content',''),(3497,118,'slide_template','default'),(3502,118,'pyre_width','default'),(3503,118,'pyre_portfolio_width_100','default'),(3504,118,'pyre_project_desc_title','default'),(3505,118,'pyre_project_details','default'),(3506,118,'pyre_show_first_featured_image','default'),(3507,118,'pyre_video',''),(3508,118,'pyre_video_url',''),(3509,118,'pyre_project_url',''),(3510,118,'pyre_project_url_text',''),(3511,118,'pyre_copy_url',''),(3512,118,'pyre_copy_url_text',''),(3513,118,'pyre_fimg_width',''),(3514,118,'pyre_fimg_height',''),(3515,118,'pyre_image_rollover_icons','default'),(3516,118,'pyre_link_icon_url',''),(3517,118,'pyre_link_icon_target','default'),(3518,118,'pyre_related_posts','default'),(3519,118,'pyre_share_box','default'),(3520,118,'pyre_post_pagination','default'),(3521,118,'pyre_main_top_padding',''),(3522,118,'pyre_main_bottom_padding',''),(3523,118,'pyre_hundredp_padding',''),(3524,118,'pyre_slider_position','default'),(3525,118,'pyre_slider_type','no'),(3526,118,'pyre_slider','0'),(3527,118,'pyre_wooslider','0'),(3528,118,'pyre_revslider','0'),(3529,118,'pyre_elasticslider','0'),(3530,118,'pyre_fallback',''),(3531,118,'pyre_avada_rev_styles','default'),(3532,118,'pyre_display_header','yes'),(3533,118,'pyre_header_100_width','default'),(3534,118,'pyre_header_bg',''),(3535,118,'pyre_header_bg_color',''),(3536,118,'pyre_header_bg_opacity',''),(3537,118,'pyre_header_bg_full','no'),(3538,118,'pyre_header_bg_repeat','repeat'),(3539,118,'pyre_displayed_menu','default'),(3540,118,'pyre_display_footer','default'),(3541,118,'pyre_display_copyright','default'),(3542,118,'pyre_footer_100_width','default'),(3543,118,'pyre_sidebar_position','default'),(3544,118,'pyre_sidebar_bg_color',''),(3545,118,'pyre_page_bg_layout','default'),(3546,118,'pyre_page_bg',''),(3547,118,'pyre_page_bg_color',''),(3548,118,'pyre_page_bg_full','no'),(3549,118,'pyre_page_bg_repeat','repeat'),(3550,118,'pyre_wide_page_bg',''),(3551,118,'pyre_wide_page_bg_color',''),(3552,118,'pyre_wide_page_bg_full','no'),(3553,118,'pyre_wide_page_bg_repeat','repeat'),(3554,118,'pyre_page_title','default'),(3555,118,'pyre_page_title_text','default'),(3556,118,'pyre_page_title_text_alignment','default'),(3557,118,'pyre_page_title_100_width','default'),(3558,118,'pyre_page_title_custom_text',''),(3559,118,'pyre_page_title_text_size',''),(3560,118,'pyre_page_title_custom_subheader',''),(3561,118,'pyre_page_title_custom_subheader_text_size',''),(3562,118,'pyre_page_title_font_color',''),(3563,118,'pyre_page_title_height',''),(3564,118,'pyre_page_title_mobile_height',''),(3565,118,'pyre_page_title_bar_bg',''),(3566,118,'pyre_page_title_bar_bg_retina',''),(3567,118,'pyre_page_title_bar_bg_color',''),(3568,118,'pyre_page_title_bar_borders_color',''),(3569,118,'pyre_page_title_bar_bg_full','default'),(3570,118,'pyre_page_title_bg_parallax','default'),(3571,118,'pyre_page_title_breadcrumbs_search_bar','default'),(3572,118,'fusion_builder_status','inactive'),(3573,125,'FB_content',''),(3582,119,'slide_template','default'),(3587,119,'pyre_width','default'),(3588,119,'pyre_portfolio_width_100','default'),(3589,119,'pyre_project_desc_title','default'),(3590,119,'pyre_project_details','default'),(3591,119,'pyre_show_first_featured_image','default'),(3592,119,'pyre_video',''),(3593,119,'pyre_video_url',''),(3594,119,'pyre_project_url',''),(3595,119,'pyre_project_url_text',''),(3596,119,'pyre_copy_url',''),(3597,119,'pyre_copy_url_text',''),(3598,119,'pyre_fimg_width',''),(3599,119,'pyre_fimg_height',''),(3600,119,'pyre_image_rollover_icons','default'),(3601,119,'pyre_link_icon_url',''),(3602,119,'pyre_link_icon_target','default'),(3603,119,'pyre_related_posts','default'),(3604,119,'pyre_share_box','default'),(3605,119,'pyre_post_pagination','default'),(3606,119,'pyre_main_top_padding',''),(3607,119,'pyre_main_bottom_padding',''),(3608,119,'pyre_hundredp_padding',''),(3609,119,'pyre_slider_position','default'),(3610,119,'pyre_slider_type','no'),(3611,119,'pyre_slider','0'),(3612,119,'pyre_wooslider','0'),(3613,119,'pyre_revslider','0'),(3614,119,'pyre_elasticslider','0'),(3615,119,'pyre_fallback',''),(3616,119,'pyre_avada_rev_styles','default'),(3617,119,'pyre_display_header','yes'),(3618,119,'pyre_header_100_width','default'),(3619,119,'pyre_header_bg',''),(3620,119,'pyre_header_bg_color',''),(3621,119,'pyre_header_bg_opacity',''),(3622,119,'pyre_header_bg_full','no'),(3623,119,'pyre_header_bg_repeat','repeat'),(3624,119,'pyre_displayed_menu','default'),(3625,119,'pyre_display_footer','default'),(3626,119,'pyre_display_copyright','default'),(3627,119,'pyre_footer_100_width','default'),(3628,119,'pyre_sidebar_position','default'),(3629,119,'pyre_sidebar_bg_color',''),(3630,119,'pyre_page_bg_layout','default'),(3631,119,'pyre_page_bg',''),(3632,119,'pyre_page_bg_color',''),(3633,119,'pyre_page_bg_full','no'),(3634,119,'pyre_page_bg_repeat','repeat'),(3635,119,'pyre_wide_page_bg',''),(3636,119,'pyre_wide_page_bg_color',''),(3637,119,'pyre_wide_page_bg_full','no'),(3638,119,'pyre_wide_page_bg_repeat','repeat'),(3639,119,'pyre_page_title','default'),(3640,119,'pyre_page_title_text','default'),(3641,119,'pyre_page_title_text_alignment','default'),(3642,119,'pyre_page_title_100_width','default'),(3643,119,'pyre_page_title_custom_text',''),(3644,119,'pyre_page_title_text_size',''),(3645,119,'pyre_page_title_custom_subheader',''),(3646,119,'pyre_page_title_custom_subheader_text_size',''),(3647,119,'pyre_page_title_font_color',''),(3648,119,'pyre_page_title_height',''),(3649,119,'pyre_page_title_mobile_height',''),(3650,119,'pyre_page_title_bar_bg',''),(3651,119,'pyre_page_title_bar_bg_retina',''),(3652,119,'pyre_page_title_bar_bg_color',''),(3653,119,'pyre_page_title_bar_borders_color',''),(3654,119,'pyre_page_title_bar_bg_full','default'),(3655,119,'pyre_page_title_bg_parallax','default'),(3656,119,'pyre_page_title_breadcrumbs_search_bar','default'),(3657,119,'fusion_builder_status','inactive'),(3658,126,'FB_content',''),(3667,120,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3668,120,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3669,120,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3670,120,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3675,118,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3676,118,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3677,118,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3678,118,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3683,119,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3684,119,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3685,119,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3686,119,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3687,1,'avada_post_views_count','182'),(3688,127,'_wp_attached_file','2016/06/vantage-logo.png'),(3689,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:57;s:4:\"file\";s:24:\"2016/06/vantage-logo.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"vantage-logo-150x57.png\";s:5:\"width\";i:150;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:22:\"vantage-logo-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"vantage-logo-180x57.png\";s:5:\"width\";i:180;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:23:\"vantage-logo-177x57.png\";s:5:\"width\";i:177;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:23:\"vantage-logo-147x57.png\";s:5:\"width\";i:147;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:22:\"vantage-logo-66x57.png\";s:5:\"width\";i:66;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3690,128,'_edit_last','1'),(3691,128,'_edit_lock','1464879502:1'),(3692,128,'_wp_page_template','default'),(3697,128,'slide_template','default'),(3702,128,'pyre_slider_position','default'),(3703,128,'pyre_slider_type','no'),(3704,128,'pyre_slider','0'),(3705,128,'pyre_wooslider','0'),(3706,128,'pyre_revslider','0'),(3707,128,'pyre_elasticslider','0'),(3708,128,'pyre_fallback',''),(3709,128,'pyre_avada_rev_styles','default'),(3710,128,'pyre_main_top_padding',''),(3711,128,'pyre_main_bottom_padding',''),(3712,128,'pyre_hundredp_padding',''),(3713,128,'pyre_show_first_featured_image','no'),(3714,128,'pyre_display_header','yes'),(3715,128,'pyre_header_100_width','default'),(3716,128,'pyre_header_bg',''),(3717,128,'pyre_header_bg_color',''),(3718,128,'pyre_header_bg_opacity',''),(3719,128,'pyre_header_bg_full','no'),(3720,128,'pyre_header_bg_repeat','repeat'),(3721,128,'pyre_displayed_menu','default'),(3722,128,'pyre_display_footer','default'),(3723,128,'pyre_display_copyright','default'),(3724,128,'pyre_footer_100_width','default'),(3725,128,'pyre_sidebar_position','default'),(3726,128,'pyre_sidebar_bg_color',''),(3727,128,'pyre_page_bg_layout','default'),(3728,128,'pyre_page_bg',''),(3729,128,'pyre_page_bg_color',''),(3730,128,'pyre_page_bg_full','no'),(3731,128,'pyre_page_bg_repeat','repeat'),(3732,128,'pyre_wide_page_bg',''),(3733,128,'pyre_wide_page_bg_color',''),(3734,128,'pyre_wide_page_bg_full','no'),(3735,128,'pyre_wide_page_bg_repeat','repeat'),(3736,128,'pyre_portfolio_width_100','no'),(3737,128,'pyre_portfolio_content_length','default'),(3738,128,'pyre_portfolio_excerpt',''),(3739,128,'pyre_portfolio_filters','yes'),(3740,128,'pyre_portfolio_text_layout','default'),(3741,128,'pyre_portfolio_featured_image_size','default'),(3742,128,'pyre_portfolio_column_spacing',''),(3743,128,'pyre_page_title','default'),(3744,128,'pyre_page_title_text','default'),(3745,128,'pyre_page_title_text_alignment','default'),(3746,128,'pyre_page_title_100_width','default'),(3747,128,'pyre_page_title_custom_text',''),(3748,128,'pyre_page_title_text_size',''),(3749,128,'pyre_page_title_custom_subheader',''),(3750,128,'pyre_page_title_custom_subheader_text_size',''),(3751,128,'pyre_page_title_font_color',''),(3752,128,'pyre_page_title_height',''),(3753,128,'pyre_page_title_mobile_height',''),(3754,128,'pyre_page_title_bar_bg',''),(3755,128,'pyre_page_title_bar_bg_retina',''),(3756,128,'pyre_page_title_bar_bg_color',''),(3757,128,'pyre_page_title_bar_borders_color',''),(3758,128,'pyre_page_title_bar_bg_full','default'),(3759,128,'pyre_page_title_bg_parallax','default'),(3760,128,'pyre_page_title_breadcrumbs_search_bar','default'),(3761,128,'fusion_builder_status','inactive'),(3762,130,'FB_content',''),(3767,129,'_edit_last','1'),(3768,129,'_wp_page_template','default'),(3773,129,'slide_template','default'),(3778,129,'pyre_slider_position','default'),(3779,129,'pyre_slider_type','no'),(3780,129,'pyre_slider','0'),(3781,129,'pyre_wooslider','0'),(3782,129,'pyre_revslider','0'),(3783,129,'pyre_elasticslider','0'),(3784,129,'pyre_fallback',''),(3785,129,'pyre_avada_rev_styles','default'),(3786,129,'pyre_main_top_padding',''),(3787,129,'pyre_main_bottom_padding',''),(3788,129,'pyre_hundredp_padding',''),(3789,129,'pyre_show_first_featured_image','no'),(3790,129,'pyre_display_header','yes'),(3791,129,'pyre_header_100_width','default'),(3792,129,'pyre_header_bg',''),(3793,129,'pyre_header_bg_color',''),(3794,129,'pyre_header_bg_opacity',''),(3795,129,'pyre_header_bg_full','no'),(3796,129,'pyre_header_bg_repeat','repeat'),(3797,129,'pyre_displayed_menu','default'),(3798,129,'pyre_display_footer','default'),(3799,129,'pyre_display_copyright','default'),(3800,129,'pyre_footer_100_width','default'),(3801,129,'pyre_sidebar_position','default'),(3802,129,'pyre_sidebar_bg_color',''),(3803,129,'pyre_page_bg_layout','default'),(3804,129,'pyre_page_bg',''),(3805,129,'pyre_page_bg_color',''),(3806,129,'pyre_page_bg_full','no'),(3807,129,'pyre_page_bg_repeat','repeat'),(3808,129,'pyre_wide_page_bg',''),(3809,129,'pyre_wide_page_bg_color',''),(3810,129,'pyre_wide_page_bg_full','no'),(3811,129,'pyre_wide_page_bg_repeat','repeat'),(3812,129,'pyre_portfolio_width_100','no'),(3813,129,'pyre_portfolio_content_length','default'),(3814,129,'pyre_portfolio_excerpt',''),(3815,129,'pyre_portfolio_filters','yes'),(3816,129,'pyre_portfolio_text_layout','default'),(3817,129,'pyre_portfolio_featured_image_size','default'),(3818,129,'pyre_portfolio_column_spacing',''),(3819,129,'pyre_page_title','default'),(3820,129,'pyre_page_title_text','default'),(3821,129,'pyre_page_title_text_alignment','default'),(3822,129,'pyre_page_title_100_width','default'),(3823,129,'pyre_page_title_custom_text',''),(3824,129,'pyre_page_title_text_size',''),(3825,129,'pyre_page_title_custom_subheader',''),(3826,129,'pyre_page_title_custom_subheader_text_size',''),(3827,129,'pyre_page_title_font_color',''),(3828,129,'pyre_page_title_height',''),(3829,129,'pyre_page_title_mobile_height',''),(3830,129,'pyre_page_title_bar_bg',''),(3831,129,'pyre_page_title_bar_bg_retina',''),(3832,129,'pyre_page_title_bar_bg_color',''),(3833,129,'pyre_page_title_bar_borders_color',''),(3834,129,'pyre_page_title_bar_bg_full','default'),(3835,129,'pyre_page_title_bg_parallax','default'),(3836,129,'pyre_page_title_breadcrumbs_search_bar','default'),(3837,129,'fusion_builder_status','active'),(3838,131,'FB_content',''),(3843,129,'_edit_lock','1464880467:1'),(3852,132,'FB_content',''),(3865,133,'FB_content',''),(3866,128,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3867,128,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3868,128,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3869,128,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3870,134,'_wp_attached_file','2016/06/strategy.png'),(3871,134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:843;s:6:\"height\";i:247;s:4:\"file\";s:20:\"2016/06/strategy.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"strategy-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:\"strategy-300x88.png\";s:5:\"width\";i:300;s:6:\"height\";i:88;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"strategy-768x225.png\";s:5:\"width\";i:768;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"strategy-669x247.png\";s:5:\"width\";i:669;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"strategy-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:18:\"strategy-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"strategy-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:20:\"strategy-540x247.png\";s:5:\"width\";i:540;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"strategy-460x247.png\";s:5:\"width\";i:460;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"strategy-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:20:\"strategy-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:20:\"strategy-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:20:\"strategy-147x118.png\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"strategy-700x247.png\";s:5:\"width\";i:700;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"strategy-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3880,135,'FB_content',''),(3881,129,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3882,129,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3883,129,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3884,129,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3885,136,'_edit_last','1'),(3886,136,'_edit_lock','1465121054:1'),(3887,143,'_wp_attached_file','2016/06/Agriculture.jpg'),(3888,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:436;s:6:\"height\";i:582;s:4:\"file\";s:23:\"2016/06/Agriculture.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Agriculture-150x150.jpg\";s:5:\"width\";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:\"Agriculture-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:23:\"Agriculture-436x272.jpg\";s:5:\"width\";i:436;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:23:\"Agriculture-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:21:\"Agriculture-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Agriculture-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Agriculture-436x400.jpg\";s:5:\"width\";i:436;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Agriculture-436x272.jpg\";s:5:\"width\";i:436;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Agriculture-436x295.jpg\";s:5:\"width\";i:436;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Agriculture-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:\"Agriculture-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:23:\"Agriculture-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:23:\"Agriculture-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"Agriculture-436x441.jpg\";s:5:\"width\";i:436;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:\"Agriculture-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3889,144,'_wp_attached_file','2016/06/Construction.jpg'),(3890,144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:891;s:6:\"height\";i:582;s:4:\"file\";s:24:\"2016/06/Construction.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Construction-150x150.jpg\";s:5:\"width\";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:\"Construction-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Construction-768x502.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:24:\"Construction-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:24:\"Construction-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:22:\"Construction-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:24:\"Construction-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:24:\"Construction-891x400.jpg\";s:5:\"width\";i:891;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:24:\"Construction-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:\"Construction-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:\"Construction-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:\"Construction-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:24:\"Construction-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:24:\"Construction-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:24:\"Construction-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:\"Construction-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3891,145,'_wp_attached_file','2016/06/Consumer-Packaging.jpg'),(3892,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:582;s:6:\"height\";i:582;s:4:\"file\";s:30:\"2016/06/Consumer-Packaging.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Consumer-Packaging-150x150.jpg\";s:5:\"width\";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:\"Consumer-Packaging-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:30:\"Consumer-Packaging-582x272.jpg\";s:5:\"width\";i:582;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:30:\"Consumer-Packaging-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:28:\"Consumer-Packaging-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:30:\"Consumer-Packaging-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:30:\"Consumer-Packaging-582x400.jpg\";s:5:\"width\";i:582;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:30:\"Consumer-Packaging-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:\"Consumer-Packaging-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:\"Consumer-Packaging-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:\"Consumer-Packaging-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:30:\"Consumer-Packaging-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:30:\"Consumer-Packaging-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:30:\"Consumer-Packaging-582x441.jpg\";s:5:\"width\";i:582;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:\"Consumer-Packaging-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3893,146,'_wp_attached_file','2016/06/Corporate-Giveaways.jpg'),(3894,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:873;s:6:\"height\";i:582;s:4:\"file\";s:31:\"2016/06/Corporate-Giveaways.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Corporate-Giveaways-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Corporate-Giveaways-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Corporate-Giveaways-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:31:\"Corporate-Giveaways-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:31:\"Corporate-Giveaways-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:29:\"Corporate-Giveaways-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:31:\"Corporate-Giveaways-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:31:\"Corporate-Giveaways-873x400.jpg\";s:5:\"width\";i:873;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:31:\"Corporate-Giveaways-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:31:\"Corporate-Giveaways-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:31:\"Corporate-Giveaways-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:31:\"Corporate-Giveaways-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:31:\"Corporate-Giveaways-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:31:\"Corporate-Giveaways-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:31:\"Corporate-Giveaways-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:29:\"Corporate-Giveaways-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\";s:2:\"16\";s:6:\"credit\";s:19:\"Photographer:Arslan\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1433870997\";s:9:\"copyright\";s:15:\"Copyright:canon\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3895,147,'_wp_attached_file','2016/06/Financial-Services.jpg'),(3896,147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:873;s:6:\"height\";i:582;s:4:\"file\";s:30:\"2016/06/Financial-Services.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Financial-Services-150x150.jpg\";s:5:\"width\";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:\"Financial-Services-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Financial-Services-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:30:\"Financial-Services-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:30:\"Financial-Services-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:28:\"Financial-Services-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:30:\"Financial-Services-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:30:\"Financial-Services-873x400.jpg\";s:5:\"width\";i:873;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:30:\"Financial-Services-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:\"Financial-Services-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:\"Financial-Services-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:\"Financial-Services-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:30:\"Financial-Services-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:30:\"Financial-Services-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:30:\"Financial-Services-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:\"Financial-Services-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\";s:1:\"8\";s:6:\"credit\";s:24:\"Photographer:saqibmoghal\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1387903403\";s:9:\"copyright\";s:15:\"Copyright:canon\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3897,142,'_edit_last','1'),(3898,142,'_edit_lock','1465120894:1'),(3899,148,'_wp_attached_file','2016/06/Retail.jpg'),(3900,148,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:602;s:6:\"height\";i:582;s:4:\"file\";s:18:\"2016/06/Retail.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Retail-150x150.jpg\";s:5:\"width\";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:\"Retail-300x290.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:290;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:18:\"Retail-602x272.jpg\";s:5:\"width\";i:602;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:18:\"Retail-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:16:\"Retail-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"Retail-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:18:\"Retail-602x400.jpg\";s:5:\"width\";i:602;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:18:\"Retail-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:\"Retail-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:\"Retail-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:\"Retail-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:18:\"Retail-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:18:\"Retail-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:18:\"Retail-602x441.jpg\";s:5:\"width\";i:602;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:\"Retail-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3906,136,'slide_template','default'),(3911,136,'pyre_width','default'),(3912,136,'pyre_portfolio_width_100','default'),(3913,136,'pyre_project_desc_title','default'),(3914,136,'pyre_project_details','default'),(3915,136,'pyre_show_first_featured_image','default'),(3916,136,'pyre_video',''),(3917,136,'pyre_video_url',''),(3918,136,'pyre_project_url',''),(3919,136,'pyre_project_url_text',''),(3920,136,'pyre_copy_url',''),(3921,136,'pyre_copy_url_text',''),(3922,136,'pyre_fimg_width',''),(3923,136,'pyre_fimg_height',''),(3924,136,'pyre_image_rollover_icons','default'),(3925,136,'pyre_link_icon_url',''),(3926,136,'pyre_link_icon_target','default'),(3927,136,'pyre_related_posts','default'),(3928,136,'pyre_share_box','default'),(3929,136,'pyre_post_pagination','default'),(3930,136,'pyre_main_top_padding',''),(3931,136,'pyre_main_bottom_padding',''),(3932,136,'pyre_hundredp_padding',''),(3933,136,'pyre_slider_position','default'),(3934,136,'pyre_slider_type','no'),(3935,136,'pyre_slider','0'),(3936,136,'pyre_wooslider','0'),(3937,136,'pyre_revslider','0'),(3938,136,'pyre_elasticslider','0'),(3939,136,'pyre_fallback',''),(3940,136,'pyre_avada_rev_styles','default'),(3941,136,'pyre_display_header','yes'),(3942,136,'pyre_header_100_width','default'),(3943,136,'pyre_header_bg',''),(3944,136,'pyre_header_bg_color',''),(3945,136,'pyre_header_bg_opacity',''),(3946,136,'pyre_header_bg_full','no'),(3947,136,'pyre_header_bg_repeat','repeat'),(3948,136,'pyre_displayed_menu','default'),(3949,136,'pyre_display_footer','default'),(3950,136,'pyre_display_copyright','default'),(3951,136,'pyre_footer_100_width','default'),(3952,136,'pyre_sidebar_position','default'),(3953,136,'pyre_sidebar_bg_color',''),(3954,136,'pyre_page_bg_layout','default'),(3955,136,'pyre_page_bg',''),(3956,136,'pyre_page_bg_color',''),(3957,136,'pyre_page_bg_full','no'),(3958,136,'pyre_page_bg_repeat','repeat'),(3959,136,'pyre_wide_page_bg',''),(3960,136,'pyre_wide_page_bg_color',''),(3961,136,'pyre_wide_page_bg_full','no'),(3962,136,'pyre_wide_page_bg_repeat','repeat'),(3963,136,'pyre_page_title','default'),(3964,136,'pyre_page_title_text','default'),(3965,136,'pyre_page_title_text_alignment','default'),(3966,136,'pyre_page_title_100_width','default'),(3967,136,'pyre_page_title_custom_text',''),(3968,136,'pyre_page_title_text_size',''),(3969,136,'pyre_page_title_custom_subheader',''),(3970,136,'pyre_page_title_custom_subheader_text_size',''),(3971,136,'pyre_page_title_font_color',''),(3972,136,'pyre_page_title_height',''),(3973,136,'pyre_page_title_mobile_height',''),(3974,136,'pyre_page_title_bar_bg',''),(3975,136,'pyre_page_title_bar_bg_retina',''),(3976,136,'pyre_page_title_bar_bg_color',''),(3977,136,'pyre_page_title_bar_borders_color',''),(3978,136,'pyre_page_title_bar_bg_full','default'),(3979,136,'pyre_page_title_bg_parallax','default'),(3980,136,'pyre_page_title_breadcrumbs_search_bar','default'),(3981,136,'fusion_builder_status','inactive'),(3982,153,'FB_content',''),(3992,142,'slide_template','default'),(3997,142,'pyre_width','default'),(3998,142,'pyre_portfolio_width_100','default'),(3999,142,'pyre_project_desc_title','default'),(4000,142,'pyre_project_details','default'),(4001,142,'pyre_show_first_featured_image','default'),(4002,142,'pyre_video',''),(4003,142,'pyre_video_url',''),(4004,142,'pyre_project_url',''),(4005,142,'pyre_project_url_text',''),(4006,142,'pyre_copy_url',''),(4007,142,'pyre_copy_url_text',''),(4008,142,'pyre_fimg_width',''),(4009,142,'pyre_fimg_height',''),(4010,142,'pyre_image_rollover_icons','default'),(4011,142,'pyre_link_icon_url',''),(4012,142,'pyre_link_icon_target','default'),(4013,142,'pyre_related_posts','default'),(4014,142,'pyre_share_box','default'),(4015,142,'pyre_post_pagination','default'),(4016,142,'pyre_main_top_padding',''),(4017,142,'pyre_main_bottom_padding',''),(4018,142,'pyre_hundredp_padding',''),(4019,142,'pyre_slider_position','default'),(4020,142,'pyre_slider_type','no'),(4021,142,'pyre_slider','0'),(4022,142,'pyre_wooslider','0'),(4023,142,'pyre_revslider','0'),(4024,142,'pyre_elasticslider','0'),(4025,142,'pyre_fallback',''),(4026,142,'pyre_avada_rev_styles','default'),(4027,142,'pyre_display_header','yes'),(4028,142,'pyre_header_100_width','default'),(4029,142,'pyre_header_bg',''),(4030,142,'pyre_header_bg_color',''),(4031,142,'pyre_header_bg_opacity',''),(4032,142,'pyre_header_bg_full','no'),(4033,142,'pyre_header_bg_repeat','repeat'),(4034,142,'pyre_displayed_menu','default'),(4035,142,'pyre_display_footer','default'),(4036,142,'pyre_display_copyright','default'),(4037,142,'pyre_footer_100_width','default'),(4038,142,'pyre_sidebar_position','default'),(4039,142,'pyre_sidebar_bg_color',''),(4040,142,'pyre_page_bg_layout','default'),(4041,142,'pyre_page_bg',''),(4042,142,'pyre_page_bg_color',''),(4043,142,'pyre_page_bg_full','no'),(4044,142,'pyre_page_bg_repeat','repeat'),(4045,142,'pyre_wide_page_bg',''),(4046,142,'pyre_wide_page_bg_color',''),(4047,142,'pyre_wide_page_bg_full','no'),(4048,142,'pyre_wide_page_bg_repeat','repeat'),(4049,142,'pyre_page_title','default'),(4050,142,'pyre_page_title_text','default'),(4051,142,'pyre_page_title_text_alignment','default'),(4052,142,'pyre_page_title_100_width','default'),(4053,142,'pyre_page_title_custom_text',''),(4054,142,'pyre_page_title_text_size',''),(4055,142,'pyre_page_title_custom_subheader',''),(4056,142,'pyre_page_title_custom_subheader_text_size',''),(4057,142,'pyre_page_title_font_color',''),(4058,142,'pyre_page_title_height',''),(4059,142,'pyre_page_title_mobile_height',''),(4060,142,'pyre_page_title_bar_bg',''),(4061,142,'pyre_page_title_bar_bg_retina',''),(4062,142,'pyre_page_title_bar_bg_color',''),(4063,142,'pyre_page_title_bar_borders_color',''),(4064,142,'pyre_page_title_bar_bg_full','default'),(4065,142,'pyre_page_title_bg_parallax','default'),(4066,142,'pyre_page_title_breadcrumbs_search_bar','default'),(4067,142,'fusion_builder_status','inactive'),(4068,154,'FB_content',''),(4090,158,'_edit_last','1'),(4091,158,'_edit_lock','1465120895:1'),(4097,158,'slide_template','default'),(4102,158,'pyre_width','default'),(4103,158,'pyre_portfolio_width_100','default'),(4104,158,'pyre_project_desc_title','default'),(4105,158,'pyre_project_details','default'),(4106,158,'pyre_show_first_featured_image','default'),(4107,158,'pyre_video',''),(4108,158,'pyre_video_url',''),(4109,158,'pyre_project_url',''),(4110,158,'pyre_project_url_text',''),(4111,158,'pyre_copy_url',''),(4112,158,'pyre_copy_url_text',''),(4113,158,'pyre_fimg_width',''),(4114,158,'pyre_fimg_height',''),(4115,158,'pyre_image_rollover_icons','default'),(4116,158,'pyre_link_icon_url',''),(4117,158,'pyre_link_icon_target','default'),(4118,158,'pyre_related_posts','default'),(4119,158,'pyre_share_box','default'),(4120,158,'pyre_post_pagination','default'),(4121,158,'pyre_main_top_padding',''),(4122,158,'pyre_main_bottom_padding',''),(4123,158,'pyre_hundredp_padding',''),(4124,158,'pyre_slider_position','default'),(4125,158,'pyre_slider_type','no'),(4126,158,'pyre_slider','0'),(4127,158,'pyre_wooslider','0'),(4128,158,'pyre_revslider','0'),(4129,158,'pyre_elasticslider','0'),(4130,158,'pyre_fallback',''),(4131,158,'pyre_avada_rev_styles','default'),(4132,158,'pyre_display_header','yes'),(4133,158,'pyre_header_100_width','default'),(4134,158,'pyre_header_bg',''),(4135,158,'pyre_header_bg_color',''),(4136,158,'pyre_header_bg_opacity',''),(4137,158,'pyre_header_bg_full','no'),(4138,158,'pyre_header_bg_repeat','repeat'),(4139,158,'pyre_displayed_menu','default'),(4140,158,'pyre_display_footer','default'),(4141,158,'pyre_display_copyright','default'),(4142,158,'pyre_footer_100_width','default'),(4143,158,'pyre_sidebar_position','default'),(4144,158,'pyre_sidebar_bg_color',''),(4145,158,'pyre_page_bg_layout','default'),(4146,158,'pyre_page_bg',''),(4147,158,'pyre_page_bg_color',''),(4148,158,'pyre_page_bg_full','no'),(4149,158,'pyre_page_bg_repeat','repeat'),(4150,158,'pyre_wide_page_bg',''),(4151,158,'pyre_wide_page_bg_color',''),(4152,158,'pyre_wide_page_bg_full','no'),(4153,158,'pyre_wide_page_bg_repeat','repeat'),(4154,158,'pyre_page_title','default'),(4155,158,'pyre_page_title_text','default'),(4156,158,'pyre_page_title_text_alignment','default'),(4157,158,'pyre_page_title_100_width','default'),(4158,158,'pyre_page_title_custom_text',''),(4159,158,'pyre_page_title_text_size',''),(4160,158,'pyre_page_title_custom_subheader',''),(4161,158,'pyre_page_title_custom_subheader_text_size',''),(4162,158,'pyre_page_title_font_color',''),(4163,158,'pyre_page_title_height',''),(4164,158,'pyre_page_title_mobile_height',''),(4165,158,'pyre_page_title_bar_bg',''),(4166,158,'pyre_page_title_bar_bg_retina',''),(4167,158,'pyre_page_title_bar_bg_color',''),(4168,158,'pyre_page_title_bar_borders_color',''),(4169,158,'pyre_page_title_bar_bg_full','default'),(4170,158,'pyre_page_title_bg_parallax','default'),(4171,158,'pyre_page_title_breadcrumbs_search_bar','default'),(4172,158,'fusion_builder_status','inactive'),(4173,163,'FB_content',''),(4178,160,'_edit_last','1'),(4179,160,'_edit_lock','1465120899:1'),(4180,161,'_edit_last','1'),(4181,161,'_edit_lock','1465120900:1'),(4187,160,'slide_template','default'),(4192,160,'pyre_width','default'),(4193,160,'pyre_portfolio_width_100','default'),(4194,160,'pyre_project_desc_title','default'),(4195,160,'pyre_project_details','default'),(4196,160,'pyre_show_first_featured_image','default'),(4197,160,'pyre_video',''),(4198,160,'pyre_video_url',''),(4199,160,'pyre_project_url',''),(4200,160,'pyre_project_url_text',''),(4201,160,'pyre_copy_url',''),(4202,160,'pyre_copy_url_text',''),(4203,160,'pyre_fimg_width',''),(4204,160,'pyre_fimg_height',''),(4205,160,'pyre_image_rollover_icons','default'),(4206,160,'pyre_link_icon_url',''),(4207,160,'pyre_link_icon_target','default'),(4208,160,'pyre_related_posts','default'),(4209,160,'pyre_share_box','default'),(4210,160,'pyre_post_pagination','default'),(4211,160,'pyre_main_top_padding',''),(4212,160,'pyre_main_bottom_padding',''),(4213,160,'pyre_hundredp_padding',''),(4214,160,'pyre_slider_position','default'),(4215,160,'pyre_slider_type','no'),(4216,160,'pyre_slider','0'),(4217,160,'pyre_wooslider','0'),(4218,160,'pyre_revslider','0'),(4219,160,'pyre_elasticslider','0'),(4220,160,'pyre_fallback',''),(4221,160,'pyre_avada_rev_styles','default'),(4222,160,'pyre_display_header','yes'),(4223,160,'pyre_header_100_width','default'),(4224,160,'pyre_header_bg',''),(4225,160,'pyre_header_bg_color',''),(4226,160,'pyre_header_bg_opacity',''),(4227,160,'pyre_header_bg_full','no'),(4228,160,'pyre_header_bg_repeat','repeat'),(4229,160,'pyre_displayed_menu','default'),(4230,160,'pyre_display_footer','default'),(4231,160,'pyre_display_copyright','default'),(4232,160,'pyre_footer_100_width','default'),(4233,160,'pyre_sidebar_position','default'),(4234,160,'pyre_sidebar_bg_color',''),(4235,160,'pyre_page_bg_layout','default'),(4236,160,'pyre_page_bg',''),(4237,160,'pyre_page_bg_color',''),(4238,160,'pyre_page_bg_full','no'),(4239,160,'pyre_page_bg_repeat','repeat'),(4240,160,'pyre_wide_page_bg',''),(4241,160,'pyre_wide_page_bg_color',''),(4242,160,'pyre_wide_page_bg_full','no'),(4243,160,'pyre_wide_page_bg_repeat','repeat'),(4244,160,'pyre_page_title','default'),(4245,160,'pyre_page_title_text','default'),(4246,160,'pyre_page_title_text_alignment','default'),(4247,160,'pyre_page_title_100_width','default'),(4248,160,'pyre_page_title_custom_text',''),(4249,160,'pyre_page_title_text_size',''),(4250,160,'pyre_page_title_custom_subheader',''),(4251,160,'pyre_page_title_custom_subheader_text_size',''),(4252,160,'pyre_page_title_font_color',''),(4253,160,'pyre_page_title_height',''),(4254,160,'pyre_page_title_mobile_height',''),(4255,160,'pyre_page_title_bar_bg',''),(4256,160,'pyre_page_title_bar_bg_retina',''),(4257,160,'pyre_page_title_bar_bg_color',''),(4258,160,'pyre_page_title_bar_borders_color',''),(4259,160,'pyre_page_title_bar_bg_full','default'),(4260,160,'pyre_page_title_bg_parallax','default'),(4261,160,'pyre_page_title_breadcrumbs_search_bar','default'),(4262,160,'fusion_builder_status','inactive'),(4263,165,'FB_content',''),(4277,164,'_edit_last','1'),(4278,164,'_edit_lock','1465120902:1'),(4291,161,'slide_template','default'),(4296,161,'pyre_width','default'),(4297,161,'pyre_portfolio_width_100','default'),(4298,161,'pyre_project_desc_title','default'),(4299,161,'pyre_project_details','default'),(4300,161,'pyre_show_first_featured_image','default'),(4301,161,'pyre_video',''),(4302,161,'pyre_video_url',''),(4303,161,'pyre_project_url',''),(4304,161,'pyre_project_url_text',''),(4305,161,'pyre_copy_url',''),(4306,161,'pyre_copy_url_text',''),(4307,161,'pyre_fimg_width',''),(4308,161,'pyre_fimg_height',''),(4309,161,'pyre_image_rollover_icons','default'),(4310,161,'pyre_link_icon_url',''),(4311,161,'pyre_link_icon_target','default'),(4312,161,'pyre_related_posts','default'),(4313,161,'pyre_share_box','default'),(4314,161,'pyre_post_pagination','default'),(4315,161,'pyre_main_top_padding',''),(4316,161,'pyre_main_bottom_padding',''),(4317,161,'pyre_hundredp_padding',''),(4318,161,'pyre_slider_position','default'),(4319,161,'pyre_slider_type','no'),(4320,161,'pyre_slider','0'),(4321,161,'pyre_wooslider','0'),(4322,161,'pyre_revslider','0'),(4323,161,'pyre_elasticslider','0'),(4324,161,'pyre_fallback',''),(4325,161,'pyre_avada_rev_styles','default'),(4326,161,'pyre_display_header','yes'),(4327,161,'pyre_header_100_width','default'),(4328,161,'pyre_header_bg',''),(4329,161,'pyre_header_bg_color',''),(4330,161,'pyre_header_bg_opacity',''),(4331,161,'pyre_header_bg_full','no'),(4332,161,'pyre_header_bg_repeat','repeat'),(4333,161,'pyre_displayed_menu','default'),(4334,161,'pyre_display_footer','default'),(4335,161,'pyre_display_copyright','default'),(4336,161,'pyre_footer_100_width','default'),(4337,161,'pyre_sidebar_position','default'),(4338,161,'pyre_sidebar_bg_color',''),(4339,161,'pyre_page_bg_layout','default'),(4340,161,'pyre_page_bg',''),(4341,161,'pyre_page_bg_color',''),(4342,161,'pyre_page_bg_full','no'),(4343,161,'pyre_page_bg_repeat','repeat'),(4344,161,'pyre_wide_page_bg',''),(4345,161,'pyre_wide_page_bg_color',''),(4346,161,'pyre_wide_page_bg_full','no'),(4347,161,'pyre_wide_page_bg_repeat','repeat'),(4348,161,'pyre_page_title','default'),(4349,161,'pyre_page_title_text','default'),(4350,161,'pyre_page_title_text_alignment','default'),(4351,161,'pyre_page_title_100_width','default'),(4352,161,'pyre_page_title_custom_text',''),(4353,161,'pyre_page_title_text_size',''),(4354,161,'pyre_page_title_custom_subheader',''),(4355,161,'pyre_page_title_custom_subheader_text_size',''),(4356,161,'pyre_page_title_font_color',''),(4357,161,'pyre_page_title_height',''),(4358,161,'pyre_page_title_mobile_height',''),(4359,161,'pyre_page_title_bar_bg',''),(4360,161,'pyre_page_title_bar_bg_retina',''),(4361,161,'pyre_page_title_bar_bg_color',''),(4362,161,'pyre_page_title_bar_borders_color',''),(4363,161,'pyre_page_title_bar_bg_full','default'),(4364,161,'pyre_page_title_bg_parallax','default'),(4365,161,'pyre_page_title_breadcrumbs_search_bar','default'),(4366,161,'fusion_builder_status','inactive'),(4367,166,'FB_content',''),(4377,164,'slide_template','default'),(4382,164,'pyre_width','default'),(4383,164,'pyre_portfolio_width_100','default'),(4384,164,'pyre_project_desc_title','default'),(4385,164,'pyre_project_details','default'),(4386,164,'pyre_show_first_featured_image','default'),(4387,164,'pyre_video',''),(4388,164,'pyre_video_url',''),(4389,164,'pyre_project_url',''),(4390,164,'pyre_project_url_text',''),(4391,164,'pyre_copy_url',''),(4392,164,'pyre_copy_url_text',''),(4393,164,'pyre_fimg_width',''),(4394,164,'pyre_fimg_height',''),(4395,164,'pyre_image_rollover_icons','default'),(4396,164,'pyre_link_icon_url',''),(4397,164,'pyre_link_icon_target','default'),(4398,164,'pyre_related_posts','default'),(4399,164,'pyre_share_box','default'),(4400,164,'pyre_post_pagination','default'),(4401,164,'pyre_main_top_padding',''),(4402,164,'pyre_main_bottom_padding',''),(4403,164,'pyre_hundredp_padding',''),(4404,164,'pyre_slider_position','default'),(4405,164,'pyre_slider_type','no'),(4406,164,'pyre_slider','0'),(4407,164,'pyre_wooslider','0'),(4408,164,'pyre_revslider','0'),(4409,164,'pyre_elasticslider','0'),(4410,164,'pyre_fallback',''),(4411,164,'pyre_avada_rev_styles','default'),(4412,164,'pyre_display_header','yes'),(4413,164,'pyre_header_100_width','default'),(4414,164,'pyre_header_bg',''),(4415,164,'pyre_header_bg_color',''),(4416,164,'pyre_header_bg_opacity',''),(4417,164,'pyre_header_bg_full','no'),(4418,164,'pyre_header_bg_repeat','repeat'),(4419,164,'pyre_displayed_menu','default'),(4420,164,'pyre_display_footer','default'),(4421,164,'pyre_display_copyright','default'),(4422,164,'pyre_footer_100_width','default'),(4423,164,'pyre_sidebar_position','default'),(4424,164,'pyre_sidebar_bg_color',''),(4425,164,'pyre_page_bg_layout','default'),(4426,164,'pyre_page_bg',''),(4427,164,'pyre_page_bg_color',''),(4428,164,'pyre_page_bg_full','no'),(4429,164,'pyre_page_bg_repeat','repeat'),(4430,164,'pyre_wide_page_bg',''),(4431,164,'pyre_wide_page_bg_color',''),(4432,164,'pyre_wide_page_bg_full','no'),(4433,164,'pyre_wide_page_bg_repeat','repeat'),(4434,164,'pyre_page_title','default'),(4435,164,'pyre_page_title_text','default'),(4436,164,'pyre_page_title_text_alignment','default'),(4437,164,'pyre_page_title_100_width','default'),(4438,164,'pyre_page_title_custom_text',''),(4439,164,'pyre_page_title_text_size',''),(4440,164,'pyre_page_title_custom_subheader',''),(4441,164,'pyre_page_title_custom_subheader_text_size',''),(4442,164,'pyre_page_title_font_color',''),(4443,164,'pyre_page_title_height',''),(4444,164,'pyre_page_title_mobile_height',''),(4445,164,'pyre_page_title_bar_bg',''),(4446,164,'pyre_page_title_bar_bg_retina',''),(4447,164,'pyre_page_title_bar_bg_color',''),(4448,164,'pyre_page_title_bar_borders_color',''),(4449,164,'pyre_page_title_bar_bg_full','default'),(4450,164,'pyre_page_title_bg_parallax','default'),(4451,164,'pyre_page_title_breadcrumbs_search_bar','default'),(4452,164,'fusion_builder_status','inactive'),(4453,167,'FB_content',''),(4474,168,'FB_content',''),(4483,169,'FB_content',''),(4496,170,'FB_content',''),(4509,171,'FB_content',''),(4522,172,'FB_content',''),(4535,173,'FB_content',''),(4540,174,'_wp_attached_file','2016/06/Agriculture-1.jpg'),(4541,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:336;s:4:\"file\";s:25:\"2016/06/Agriculture-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Agriculture-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Agriculture-1-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:25:\"Agriculture-1-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:25:\"Agriculture-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:23:\"Agriculture-1-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:25:\"Agriculture-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:25:\"Agriculture-1-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:25:\"Agriculture-1-449x295.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:25:\"Agriculture-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:25:\"Agriculture-1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:25:\"Agriculture-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:25:\"Agriculture-1-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:23:\"Agriculture-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4542,175,'_wp_attached_file','2016/06/Construction-1.jpg'),(4543,175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:336;s:4:\"file\";s:26:\"2016/06/Construction-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Construction-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Construction-1-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:26:\"Construction-1-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:26:\"Construction-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:24:\"Construction-1-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:26:\"Construction-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:26:\"Construction-1-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:26:\"Construction-1-449x295.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:26:\"Construction-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:26:\"Construction-1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:26:\"Construction-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:26:\"Construction-1-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:24:\"Construction-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4544,176,'_wp_attached_file','2016/06/Consumer-Packaging-1.jpg'),(4545,176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:336;s:4:\"file\";s:32:\"2016/06/Consumer-Packaging-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Consumer-Packaging-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Consumer-Packaging-1-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:32:\"Consumer-Packaging-1-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:32:\"Consumer-Packaging-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:30:\"Consumer-Packaging-1-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:32:\"Consumer-Packaging-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:32:\"Consumer-Packaging-1-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:32:\"Consumer-Packaging-1-449x295.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:32:\"Consumer-Packaging-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:32:\"Consumer-Packaging-1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:32:\"Consumer-Packaging-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:32:\"Consumer-Packaging-1-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:30:\"Consumer-Packaging-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4546,177,'_wp_attached_file','2016/06/Corporate-Giveaways-1.jpg'),(4547,177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:336;s:4:\"file\";s:33:\"2016/06/Corporate-Giveaways-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Corporate-Giveaways-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Corporate-Giveaways-1-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:33:\"Corporate-Giveaways-1-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:33:\"Corporate-Giveaways-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:31:\"Corporate-Giveaways-1-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:33:\"Corporate-Giveaways-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:33:\"Corporate-Giveaways-1-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:33:\"Corporate-Giveaways-1-449x295.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:33:\"Corporate-Giveaways-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:33:\"Corporate-Giveaways-1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:33:\"Corporate-Giveaways-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:33:\"Corporate-Giveaways-1-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:31:\"Corporate-Giveaways-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4548,178,'_wp_attached_file','2016/06/Retail-1.jpg'),(4549,178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:336;s:4:\"file\";s:20:\"2016/06/Retail-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Retail-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:\"Retail-1-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"Retail-1-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"Retail-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:18:\"Retail-1-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"Retail-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:\"Retail-1-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"Retail-1-449x295.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"Retail-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:\"Retail-1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:20:\"Retail-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:20:\"Retail-1-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"Retail-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4550,179,'_wp_attached_file','2016/06/Financial-Services-1.jpg'),(4551,179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:336;s:4:\"file\";s:32:\"2016/06/Financial-Services-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Financial-Services-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Financial-Services-1-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:32:\"Financial-Services-1-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:32:\"Financial-Services-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:30:\"Financial-Services-1-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:32:\"Financial-Services-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:32:\"Financial-Services-1-449x272.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:32:\"Financial-Services-1-449x295.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:32:\"Financial-Services-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:32:\"Financial-Services-1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:32:\"Financial-Services-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:32:\"Financial-Services-1-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:30:\"Financial-Services-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4552,161,'_thumbnail_id','174'),(4553,164,'_thumbnail_id','179'),(4558,164,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4559,164,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4560,164,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4561,164,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4566,161,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4567,161,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4568,161,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4569,161,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4570,160,'_thumbnail_id','178'),(4571,158,'_thumbnail_id','175'),(4576,158,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4577,158,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4578,158,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4579,158,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4584,160,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4585,160,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4586,160,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4587,160,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4588,142,'_thumbnail_id','177'),(4593,142,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4594,142,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4595,142,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4596,142,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4597,136,'_thumbnail_id','176'),(4602,136,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4603,136,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4604,136,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4605,136,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4606,181,'_wp_attached_file','2016/06/v-logo.png'),(4607,181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:57;s:4:\"file\";s:18:\"2016/06/v-logo.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"v-logo-150x57.png\";s:5:\"width\";i:150;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:16:\"v-logo-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"v-logo-180x57.png\";s:5:\"width\";i:180;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:17:\"v-logo-177x57.png\";s:5:\"width\";i:177;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:17:\"v-logo-147x57.png\";s:5:\"width\";i:147;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"v-logo-66x57.png\";s:5:\"width\";i:66;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4608,182,'_edit_last','1'),(4609,182,'_edit_lock','1465735549:1'),(4610,182,'_wp_page_template','default'),(4615,182,'slide_template','default'),(4620,182,'pyre_slider_position','default'),(4621,182,'pyre_slider_type','no'),(4622,182,'pyre_slider','0'),(4623,182,'pyre_wooslider','0'),(4624,182,'pyre_revslider','0'),(4625,182,'pyre_elasticslider','0'),(4626,182,'pyre_fallback',''),(4627,182,'pyre_avada_rev_styles','default'),(4628,182,'pyre_main_top_padding',''),(4629,182,'pyre_main_bottom_padding',''),(4630,182,'pyre_hundredp_padding',''),(4631,182,'pyre_show_first_featured_image','no'),(4632,182,'pyre_display_header','yes'),(4633,182,'pyre_header_100_width','default'),(4634,182,'pyre_header_bg',''),(4635,182,'pyre_header_bg_color',''),(4636,182,'pyre_header_bg_opacity',''),(4637,182,'pyre_header_bg_full','no'),(4638,182,'pyre_header_bg_repeat','repeat'),(4639,182,'pyre_displayed_menu','default'),(4640,182,'pyre_display_footer','default'),(4641,182,'pyre_display_copyright','default'),(4642,182,'pyre_footer_100_width','default'),(4643,182,'pyre_sidebar_position','default'),(4644,182,'pyre_sidebar_bg_color',''),(4645,182,'pyre_page_bg_layout','default'),(4646,182,'pyre_page_bg',''),(4647,182,'pyre_page_bg_color',''),(4648,182,'pyre_page_bg_full','no'),(4649,182,'pyre_page_bg_repeat','repeat'),(4650,182,'pyre_wide_page_bg',''),(4651,182,'pyre_wide_page_bg_color',''),(4652,182,'pyre_wide_page_bg_full','no'),(4653,182,'pyre_wide_page_bg_repeat','repeat'),(4654,182,'pyre_portfolio_width_100','no'),(4655,182,'pyre_portfolio_content_length','default'),(4656,182,'pyre_portfolio_excerpt',''),(4657,182,'pyre_portfolio_filters','yes'),(4658,182,'pyre_portfolio_text_layout','default'),(4659,182,'pyre_portfolio_featured_image_size','default'),(4660,182,'pyre_portfolio_column_spacing',''),(4661,182,'pyre_page_title','default'),(4662,182,'pyre_page_title_text','default'),(4663,182,'pyre_page_title_text_alignment','default'),(4664,182,'pyre_page_title_100_width','default'),(4665,182,'pyre_page_title_custom_text',''),(4666,182,'pyre_page_title_text_size',''),(4667,182,'pyre_page_title_custom_subheader',''),(4668,182,'pyre_page_title_custom_subheader_text_size',''),(4669,182,'pyre_page_title_font_color',''),(4670,182,'pyre_page_title_height',''),(4671,182,'pyre_page_title_mobile_height',''),(4672,182,'pyre_page_title_bar_bg',''),(4673,182,'pyre_page_title_bar_bg_retina',''),(4674,182,'pyre_page_title_bar_bg_color',''),(4675,182,'pyre_page_title_bar_borders_color',''),(4676,182,'pyre_page_title_bar_bg_full','default'),(4677,182,'pyre_page_title_bg_parallax','default'),(4678,182,'pyre_page_title_breadcrumbs_search_bar','default'),(4679,182,'fusion_builder_status','active'),(4680,183,'FB_content',''),(4685,184,'FB_content',''),(4694,185,'FB_content',''),(4707,186,'FB_content',''),(4728,187,'FB_content',''),(4729,182,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4730,182,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4731,182,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4732,182,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4741,188,'FB_content',''),(4754,189,'FB_content',''),(4759,191,'_wp_attached_file','2016/05/career.jpg'),(4760,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:585;s:6:\"height\";i:397;s:4:\"file\";s:18:\"2016/05/career.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"career-150x150.jpg\";s:5:\"width\";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:\"career-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:18:\"career-585x272.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:18:\"career-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:16:\"career-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"career-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:\"career-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:\"career-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:\"career-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:\"career-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:18:\"career-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:18:\"career-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"career-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\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4769,192,'FB_content',''),(4774,194,'_edit_last','1'),(4775,194,'_edit_lock','1466767086:1'),(4776,195,'_edit_last','1'),(4777,195,'_edit_lock','1466766884:1'),(4778,193,'_edit_last','1'),(4779,193,'_wp_page_template','default'),(4784,193,'slide_template','default'),(4789,193,'pyre_slider_position','default'),(4790,193,'pyre_slider_type','no'),(4791,193,'pyre_slider','0'),(4792,193,'pyre_wooslider','0'),(4793,193,'pyre_revslider','0'),(4794,193,'pyre_elasticslider','0'),(4795,193,'pyre_fallback',''),(4796,193,'pyre_avada_rev_styles','default'),(4797,193,'pyre_main_top_padding',''),(4798,193,'pyre_main_bottom_padding',''),(4799,193,'pyre_hundredp_padding',''),(4800,193,'pyre_show_first_featured_image','no'),(4801,193,'pyre_display_header','yes'),(4802,193,'pyre_header_100_width','default'),(4803,193,'pyre_header_bg',''),(4804,193,'pyre_header_bg_color',''),(4805,193,'pyre_header_bg_opacity',''),(4806,193,'pyre_header_bg_full','no'),(4807,193,'pyre_header_bg_repeat','repeat'),(4808,193,'pyre_displayed_menu','default'),(4809,193,'pyre_display_footer','default'),(4810,193,'pyre_display_copyright','default'),(4811,193,'pyre_footer_100_width','default'),(4812,193,'pyre_sidebar_position','default'),(4813,193,'pyre_sidebar_bg_color',''),(4814,193,'pyre_page_bg_layout','default'),(4815,193,'pyre_page_bg',''),(4816,193,'pyre_page_bg_color',''),(4817,193,'pyre_page_bg_full','no'),(4818,193,'pyre_page_bg_repeat','repeat'),(4819,193,'pyre_wide_page_bg',''),(4820,193,'pyre_wide_page_bg_color',''),(4821,193,'pyre_wide_page_bg_full','no'),(4822,193,'pyre_wide_page_bg_repeat','repeat'),(4823,193,'pyre_portfolio_width_100','no'),(4824,193,'pyre_portfolio_content_length','default'),(4825,193,'pyre_portfolio_excerpt',''),(4826,193,'pyre_portfolio_filters','yes'),(4827,193,'pyre_portfolio_text_layout','default'),(4828,193,'pyre_portfolio_featured_image_size','default'),(4829,193,'pyre_portfolio_column_spacing',''),(4830,193,'pyre_page_title','default'),(4831,193,'pyre_page_title_text','default'),(4832,193,'pyre_page_title_text_alignment','default'),(4833,193,'pyre_page_title_100_width','default'),(4834,193,'pyre_page_title_custom_text',''),(4835,193,'pyre_page_title_text_size',''),(4836,193,'pyre_page_title_custom_subheader',''),(4837,193,'pyre_page_title_custom_subheader_text_size',''),(4838,193,'pyre_page_title_font_color',''),(4839,193,'pyre_page_title_height',''),(4840,193,'pyre_page_title_mobile_height',''),(4841,193,'pyre_page_title_bar_bg',''),(4842,193,'pyre_page_title_bar_bg_retina',''),(4843,193,'pyre_page_title_bar_bg_color',''),(4844,193,'pyre_page_title_bar_borders_color',''),(4845,193,'pyre_page_title_bar_bg_full','default'),(4846,193,'pyre_page_title_bg_parallax','default'),(4847,193,'pyre_page_title_breadcrumbs_search_bar','default'),(4848,193,'fusion_builder_status','active'),(4849,196,'FB_content',''),(4854,193,'_edit_lock','1466766953:1'),(4855,194,'_wp_page_template','default'),(4860,194,'slide_template','default'),(4865,194,'pyre_slider_position','default'),(4866,194,'pyre_slider_type','no'),(4867,194,'pyre_slider','0'),(4868,194,'pyre_wooslider','0'),(4869,194,'pyre_revslider','0'),(4870,194,'pyre_elasticslider','0'),(4871,194,'pyre_fallback',''),(4872,194,'pyre_avada_rev_styles','default'),(4873,194,'pyre_main_top_padding',''),(4874,194,'pyre_main_bottom_padding',''),(4875,194,'pyre_hundredp_padding',''),(4876,194,'pyre_show_first_featured_image','no'),(4877,194,'pyre_display_header','yes'),(4878,194,'pyre_header_100_width','default'),(4879,194,'pyre_header_bg',''),(4880,194,'pyre_header_bg_color',''),(4881,194,'pyre_header_bg_opacity',''),(4882,194,'pyre_header_bg_full','no'),(4883,194,'pyre_header_bg_repeat','repeat'),(4884,194,'pyre_displayed_menu','default'),(4885,194,'pyre_display_footer','default'),(4886,194,'pyre_display_copyright','default'),(4887,194,'pyre_footer_100_width','default'),(4888,194,'pyre_sidebar_position','default'),(4889,194,'pyre_sidebar_bg_color',''),(4890,194,'pyre_page_bg_layout','default'),(4891,194,'pyre_page_bg',''),(4892,194,'pyre_page_bg_color',''),(4893,194,'pyre_page_bg_full','no'),(4894,194,'pyre_page_bg_repeat','repeat'),(4895,194,'pyre_wide_page_bg',''),(4896,194,'pyre_wide_page_bg_color',''),(4897,194,'pyre_wide_page_bg_full','no'),(4898,194,'pyre_wide_page_bg_repeat','repeat'),(4899,194,'pyre_portfolio_width_100','no'),(4900,194,'pyre_portfolio_content_length','default'),(4901,194,'pyre_portfolio_excerpt',''),(4902,194,'pyre_portfolio_filters','yes'),(4903,194,'pyre_portfolio_text_layout','default'),(4904,194,'pyre_portfolio_featured_image_size','default'),(4905,194,'pyre_portfolio_column_spacing',''),(4906,194,'pyre_page_title','default'),(4907,194,'pyre_page_title_text','default'),(4908,194,'pyre_page_title_text_alignment','default'),(4909,194,'pyre_page_title_100_width','default'),(4910,194,'pyre_page_title_custom_text',''),(4911,194,'pyre_page_title_text_size',''),(4912,194,'pyre_page_title_custom_subheader',''),(4913,194,'pyre_page_title_custom_subheader_text_size',''),(4914,194,'pyre_page_title_font_color',''),(4915,194,'pyre_page_title_height',''),(4916,194,'pyre_page_title_mobile_height',''),(4917,194,'pyre_page_title_bar_bg',''),(4918,194,'pyre_page_title_bar_bg_retina',''),(4919,194,'pyre_page_title_bar_bg_color',''),(4920,194,'pyre_page_title_bar_borders_color',''),(4921,194,'pyre_page_title_bar_bg_full','default'),(4922,194,'pyre_page_title_bg_parallax','default'),(4923,194,'pyre_page_title_breadcrumbs_search_bar','default'),(4924,194,'fusion_builder_status','active'),(4925,197,'FB_content',''),(4938,198,'FB_content',''),(4943,195,'_wp_page_template','default'),(4948,195,'slide_template','default'),(4953,195,'pyre_slider_position','default'),(4954,195,'pyre_slider_type','no'),(4955,195,'pyre_slider','0'),(4956,195,'pyre_wooslider','0'),(4957,195,'pyre_revslider','0'),(4958,195,'pyre_elasticslider','0'),(4959,195,'pyre_fallback',''),(4960,195,'pyre_avada_rev_styles','default'),(4961,195,'pyre_main_top_padding',''),(4962,195,'pyre_main_bottom_padding',''),(4963,195,'pyre_hundredp_padding',''),(4964,195,'pyre_show_first_featured_image','no'),(4965,195,'pyre_display_header','yes'),(4966,195,'pyre_header_100_width','default'),(4967,195,'pyre_header_bg',''),(4968,195,'pyre_header_bg_color',''),(4969,195,'pyre_header_bg_opacity',''),(4970,195,'pyre_header_bg_full','no'),(4971,195,'pyre_header_bg_repeat','repeat'),(4972,195,'pyre_displayed_menu','default'),(4973,195,'pyre_display_footer','default'),(4974,195,'pyre_display_copyright','default'),(4975,195,'pyre_footer_100_width','default'),(4976,195,'pyre_sidebar_position','default'),(4977,195,'pyre_sidebar_bg_color',''),(4978,195,'pyre_page_bg_layout','default'),(4979,195,'pyre_page_bg',''),(4980,195,'pyre_page_bg_color',''),(4981,195,'pyre_page_bg_full','no'),(4982,195,'pyre_page_bg_repeat','repeat'),(4983,195,'pyre_wide_page_bg',''),(4984,195,'pyre_wide_page_bg_color',''),(4985,195,'pyre_wide_page_bg_full','no'),(4986,195,'pyre_wide_page_bg_repeat','repeat'),(4987,195,'pyre_portfolio_width_100','no'),(4988,195,'pyre_portfolio_content_length','default'),(4989,195,'pyre_portfolio_excerpt',''),(4990,195,'pyre_portfolio_filters','yes'),(4991,195,'pyre_portfolio_text_layout','default'),(4992,195,'pyre_portfolio_featured_image_size','default'),(4993,195,'pyre_portfolio_column_spacing',''),(4994,195,'pyre_page_title','default'),(4995,195,'pyre_page_title_text','default'),(4996,195,'pyre_page_title_text_alignment','default'),(4997,195,'pyre_page_title_100_width','default'),(4998,195,'pyre_page_title_custom_text',''),(4999,195,'pyre_page_title_text_size',''),(5000,195,'pyre_page_title_custom_subheader',''),(5001,195,'pyre_page_title_custom_subheader_text_size',''),(5002,195,'pyre_page_title_font_color',''),(5003,195,'pyre_page_title_height',''),(5004,195,'pyre_page_title_mobile_height',''),(5005,195,'pyre_page_title_bar_bg',''),(5006,195,'pyre_page_title_bar_bg_retina',''),(5007,195,'pyre_page_title_bar_bg_color',''),(5008,195,'pyre_page_title_bar_borders_color',''),(5009,195,'pyre_page_title_bar_bg_full','default'),(5010,195,'pyre_page_title_bg_parallax','default'),(5011,195,'pyre_page_title_breadcrumbs_search_bar','default'),(5012,195,'fusion_builder_status','inactive'),(5013,199,'FB_content',''),(5042,200,'FB_content',''),(5043,195,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5044,195,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(5045,195,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5046,195,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5055,201,'FB_content',''),(5056,193,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5057,193,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(5058,193,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5059,193,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5068,202,'FB_content',''),(5069,4,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5070,4,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(5071,4,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5072,4,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5081,203,'FB_content',''),(5082,194,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5083,194,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(5084,194,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5085,194,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5086,168,'FB_content','');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

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

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2016-05-31 20:01:30','2016-05-31 20:01:30','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2016-05-31 20:01:30','2016-05-31 20:01:30','',0,'http://localhost/vantage/?p=1',0,'post','',1),(2,1,'2016-05-31 20:01:30','2016-05-31 20:01:30','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://localhost/vantage/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2016-05-31 20:01:30','2016-05-31 20:01:30','',0,'http://localhost/vantage/?page_id=2',0,'page','',0),(4,1,'2016-05-31 20:20:19','2016-05-31 20:20:19','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 65px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<a href=\"http://vantageprinters.com/vital/branding/\"><span style=\"font-family: Roboto;\">BRANDING</span></a>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Helping you build an authentic brand.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<a href=\"http://vantageprinters.com/vital/digital/\"><span style=\"font-family: Roboto;\">DIGITAL</span></a>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Equipping you for the digital age.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<a href=\"http://vantageprinters.com/vital/print/\"><span style=\"font-family: Roboto;\">PRINT</span></a>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Striving for the wow-factor.</em></p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItdmFsdWVzIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItY2FwYWJpbGl0aWVzLyI+T1VSIENBUEFCSUxJVElFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"text-transform: uppercase; font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/career.jpg\" alt=\"\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]<a href=\"https://www.fb.com/vantagepakistan\" target=\"_blank\">VantagePakistan</a>[/li_item][li_item icon=\"fa-linkedin\"]<a href=\"https://www.linkedin.com/company/vantage-printers\" target=\"_blank\">vantage-printers</a>[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" alt=\"\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','publish','closed','closed','','home','','','2016-06-24 11:18:15','2016-06-24 11:18:15','',0,'http://localhost/vantage/?page_id=4',0,'page','',0),(5,1,'2016-05-31 20:19:20','2016-05-31 20:19:20','','01','','inherit','open','closed','','01','','','2016-05-31 20:19:20','2016-05-31 20:19:20','',4,'http://localhost/vantage/wp-content/uploads/2016/05/01.jpg',0,'attachment','image/jpeg',0),(6,1,'2016-05-31 20:19:48','2016-05-31 20:19:48','[fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/01-300x169.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"home\" class=\"\" id=\"\"][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-05-31 20:19:48','2016-05-31 20:19:48','',4,'http://localhost/vantage/index.php/2016/05/31/4-revision-v1/',0,'revision','',0),(7,1,'2016-05-31 20:27:04','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2016-05-31 20:27:04','0000-00-00 00:00:00','',0,'http://localhost/vantage/?p=7',1,'nav_menu_item','',0),(8,1,'2016-05-31 20:28:10','2016-05-31 20:28:10','','Home','','publish','closed','closed','','home','','','2016-06-02 14:44:24','2016-06-02 14:44:24','',0,'http://localhost/vantage/?p=8',1,'nav_menu_item','',0),(9,1,'2016-05-31 20:30:44','2016-05-31 20:30:44','','Services','','publish','closed','closed','','services','','','2016-06-02 14:44:24','2016-06-02 14:44:24','',0,'http://localhost/vantage/?p=9',2,'nav_menu_item','',0),(10,1,'2016-05-31 20:30:44','2016-05-31 20:30:44','','About','','publish','closed','closed','','about','','','2016-06-02 14:44:24','2016-06-02 14:44:24','',0,'http://localhost/vantage/?p=10',3,'nav_menu_item','',0),(11,1,'2016-05-31 20:30:45','2016-05-31 20:30:45','','Work','','publish','closed','closed','','work','','','2016-06-02 14:44:24','2016-06-02 14:44:24','',0,'http://localhost/vantage/?p=11',4,'nav_menu_item','',0),(12,1,'2016-05-31 20:30:45','2016-05-31 20:30:45','','Culture','','publish','closed','closed','','culture','','','2016-06-02 14:44:24','2016-06-02 14:44:24','',0,'http://localhost/vantage/?p=12',5,'nav_menu_item','',0),(13,1,'2016-05-31 20:30:45','2016-05-31 20:30:45','','Careers','','publish','closed','closed','','careers','','','2016-06-02 14:44:24','2016-06-02 14:44:24','',0,'http://localhost/vantage/?p=13',6,'nav_menu_item','',0),(15,1,'2016-05-31 20:30:46','2016-05-31 20:30:46','','Contact','','publish','closed','closed','','contact','','','2016-06-02 14:44:24','2016-06-02 14:44:24','',0,'http://localhost/vantage/?p=15',7,'nav_menu_item','',0),(16,1,'2016-05-31 20:30:46','2016-05-31 20:30:46','','Blog','','publish','closed','closed','','blog','','','2016-06-02 14:44:24','2016-06-02 14:44:24','',0,'http://localhost/vantage/?p=16',8,'nav_menu_item','',0),(18,1,'2016-05-31 20:57:58','2016-05-31 20:57:58','[fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"intro\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px;\">Avada: Themeforest\'s <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #a0ce4e;\">#1</span></a> Selling Wordpress Theme of All Time</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px;\">With over [tooltip title=\"Join The Avada Community!\"]<strong>70,000+ Users and counting</strong>[/tooltip], Avada is the [tooltip title=\"We Love Our Users!\"]<strong>most complete and trusted</strong>[/tooltip] wordpress theme on the market.</p>\r\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/browsers1.jpg\" alt=\"Avada Theme Image\" />[/imageframe][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"35px\" padding_bottom=\"15px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">Free Updates &amp; Support: You Need It, We Gladly Provide It.</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Our #1 priority is you, the user. We believe in our product and hold ourselves to the highest standards. We truly care about your site as much as you do, which is why we offer the best support around at our dedicated support center. In addition, Avada constantly offers free updates with new features requested by our users. You can count on us.</p>\r\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" stretch=\"default\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Macbook Image\" />[/imageframe][/one_half][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][counters_box columns=\"4\" color=\"\" title_size=\"\" icon_size=\"\" icon_top=\"\" body_color=\"\" body_size=\"\" border_color=\"\" animation_offset=\"\" class=\"\" id=\"\"][counter_box value=\"70000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Wonderful Users &amp; Counting[/counter_box][counter_box value=\"25000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Support Threads Resolved[/counter_box][counter_box value=\"8000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Hours of Development[/counter_box][counter_box value=\"11000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Cups of Coffee[/counter_box][/counters_box][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"features\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">Endless Possibilities: The Only Theme You Need</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Avada\'s powerful theme and meta options along with its unique structure lets you create any design style with just one theme. These simple yet powerful options allow you to create any type of website. No two versions of Avada will ever look the same.</p>\r\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/combo_text.jpg\" alt=\"\" />[/imageframe][/fullwidth][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"30px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">Incredible Features: The Proof Is In The Pudding</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important; color: #b1b1b1 !important;\">Avada is loaded with useful features, each one with its own meaningful purpose. We listen to our users and integrate their feature requests on a regular basis. Avada is not only built by us, but also by our users.</p>\r\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Ultra-Responsive Design</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada is 100% responsive, each and every element including the awesome premium sliders are fully responsive. And the responsive mode can easily be turned on or off in the theme options panel![/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Advanced Theme Options</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]We include an extremely advanced admin panel allowing users to quickly and easily customize the theme. These options are intuitive and very powerful and best of all are fun to use![/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Powerful Page Options</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada\'s meta options make it easy to customize your content for each page, blog, portfolio or FAQ post. Apply sliders, backgrounds, colors, icons, sidebars to name a few.[/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Headers &amp; Megamenu</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada includes 5 different header designs to choose from, a sticky header option and an amazing widgetized megamenu! Unlike other themes, we give you control over the header elements.[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Fusion-Core Shortcodes</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Our Shortcode Generator is a pleasure to use and has an amazingly beautiful user interface! Quickly and easily build your own custom pages using all the various shortcodes that Avada includes.[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Premium Sliders</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada has you covered and includes sliders for regular images and videos, or beautifully animated slides, or post sliders. Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider![/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Translation &amp; RTL</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Not only is Avada translation ready, we also Include several languages already translated! Need RTL? No problem! And Avada is 100% WPML &amp; qTranslate compatible for multi-lingual site![/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Advanced Blog Options</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]6 Layouts to choose from; unlimited blog pages, custom categories per page, premium sliders, reorder posts, awesome rollover effects, custom featured image size per post to name a few![/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Advanced Portfolio Options</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Multiple layout styles, unlimited portfolio pages, custom categories per page, awesome rollover effects, full or half-width detail page, custom featured image size, filters to name a few![/fusion_text][/one_third][/fullwidth][section_separator divider_candy=\"top\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"35px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">Those Are Just A Few Main Features, There Are Plenty More</h1>\r\n[/fusion_text][separator style_type=\"double\" top_margin=\"5\" bottom_margin=\"35\" sep_color=\"#555555\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"#333333\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Easy Installation &amp; Setup</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Fully Customizable Options</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">One Click Demo Content Importer</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Auto Theme Updater</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Retina Ready For Enabled Devices</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Custom Backgrounds Per Page/Post</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Awesome Widgetized MegaMenu</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Unlimited Colors / Skins</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Powerful Customization Options</p>\r\n[/li_item][/checklist][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"#333333\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">One Page Parallax For Any Page</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">WooCommerce Design Integration</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">bbPress Forum Design Integration</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Font Icons Instead of Images</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Eye-Catching CSS3 Animations</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Boxed or Wide Per Page/Post</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Extensive Doc &amp; HD Videos</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Top Notch Support Service</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Constant Updates &amp; New Features</p>\r\n[/li_item][/checklist][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"#333333\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Incredible Shortcode Options</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Custom Menu Per Page/Post</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Font Awesome Icon Integration</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Advanced Typography Options</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Strong SEO Base Built In</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Unlimited Sidebar Creation</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Multiple Custom Widgets</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Four Premium Sliders</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Fully Optimized For Speed</p>\r\n[/li_item][/checklist][/one_third][/fullwidth][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"10px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" stretch=\"default\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.09)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"rgba(255,255,255,.9)\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]I\'m Sold, Buy Avada Now![/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"#fff\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"pages\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">Custom Pages: Have No Limits.</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Avada gives you limitless potential to build amazing pages. Easily create unique page layouts using the tools we provide. In addition, we have you covered with dozens of beautiful pre-designed pages you can quickly choose from.</p>\r\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][/one_third][/fullwidth][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"30px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">Layout Options: Decision, Decisions, Decisions</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important; color: #b1b1b1 !important;\">Avada does not limit you to one setup, we prefer to give you options. From boxed layout to wide, left sidebars to right and multiple headers; we let you decide. That\'s right, you can have your cake and eat some too.</p>\r\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/bkgd13.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"85px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Left Sidebar / Content</h2>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Content / Right Sidebar</h2>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">No Sidebar Full Content</h2>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Boxed Layout</h2>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Full Width Layout</h2>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">100% Width For Page Content</h2>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Logo / Menu</h2>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Menu / Logo &amp; Menu</h2>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Menu / Logo / Menu</h2>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"woocommerce\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">What Else? Full Design Integration For WooCommerce</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Need an online shop? No problem, Avada includes integration for the most popular shop plugin, WooCommerce. Our custom design and unique shop shortcodes will allow your products to shine.</p>\r\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/woo_feature2.jpg\" alt=\"\" />[/imageframe][/fullwidth][fullwidth background_color=\"\" background_image=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#c6c6c6\" border_style=\"\" padding_top=\"65px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"demo\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">Ridiculously Easy Setup: True One Click Demo Import</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Many themes claim to have a quick setup, but leave you dealing with several XML files to manually import. Who wants to do that? We sure don\'t. Avada truly offers a quick, easy setup. Install the theme, click the demo content button and you receive a demo setup of pages, post, sliders, sidebars, widgets, theme options and more. It doesn\'t get any easier, our demo content importer is a beautiful thing.</p>\r\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" stretch=\"default\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"fusion2\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]WHAT ELSE YOU GOT?[/button][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"27\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"demo_content\" />[/imageframe][/one_half][/fullwidth][modal name=\"fusion2\" title=\"How About This Wicked Cool Popup Modal?\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #333333;\">Avada\'s Humbled History</span></h1>\r\n[separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"#cdcdcd\" icon=\"fa-heart-o\" width=\"820px\" class=\"\" id=\"\"] <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><img class=\"alignnone size-full wp-image-9655\" src=\"http://theme-fusion.com/avada/wp-content/uploads/2014/06/avada_history.jpg\" alt=\"test_graphic\" width=\"858\" height=\"497\" /></a>[/modal][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"shortcodes\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">Shortcodes: We Make Them, You Use Them.</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Shortcodes are the backbone of page design for any theme, and Avada offers a huge set. We include all the standard shortcodes and also a wide variety of unique shortcodes, each with their own amazing options to customize to your heart\'s content. Avada shortcodes allow you to build a variety of pages, and with our shortcode generator it\'s not only useful, it\'s fun.</p>\r\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/shortcodes2.jpg\" alt=\"shortcodes\" />[/imageframe][/fullwidth][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"30px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"reviews\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">User Reviews: We Love our Users, And They Love Us.</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important; color: #b1b1b1 !important;\">We are fully dedicated to user base. When you buy Avada, there is no need to worry about customer support. With over 50,000 users and counting, you cannot go wrong with Avada. Check out what our users are saying about Avada!</p>\r\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"65px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 31px !important; font-style: italic !important;\">\"WOW – This is the Best Theme I have ever seen.\"</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 26px !important; color: #747474 !important; font-style: italic !important;\">WOW – I dont really know what else to say. This is the Best Theme I have ever seen. I am a full time web dev, and this theme blows me away. I wanted to thank you for all your hard work. I am really looking forward to building my new site! I think you thought of everything and then some. Thank you so much for this theme, WOW- AMAZING!\" <strong>- MarketingMonsters</strong></p>\r\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"45\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Aajami\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I bought this theme and i would like to recommend it to every one interested in building a website without knowledge of php or html. It is very convenient and the customer service is very reactive. I will say it in French \"Bravo\" for this work![/testimonial][/testimonials][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Lucasgriffin\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Amazing theme and top class support, as I\'m a beginner, Luke helped me above and beyond and was more than patient, his responses were quick and he has a genuine care for you to enjoy and move forward with your theme!.. highly recommended theme and author! [/testimonial][/testimonials][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Gojcus\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Let me say something. You have an amazing theme and amazing/awesome support. They helped me on weekend. This is what I call an \"extra mile\" in customer relationship. So I gave 5 stars for the theme and if I could, I\'d give 10 stars for support.[/testimonial][/testimonials][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"William Genske\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thank you for your very professional and prompt response. I went to look for answers to my own questions and quickly realized that the information I was requesting was very easy to find. As were the videos and the instructions. In fact everything has been perfect so far. This is by far the most well supported theme I have ever had the pleasure to work with. Lots of wonderful options. I wished I had found you before I spent money on a competitors theme. Thanks again for the great support and for a great product. [/testimonial][/testimonials][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Stuartyboy\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]If I could give 100 stars for support and attention to detail I definitely would. I\'ve purchased a good number of Wordpress themes from various developers that look good on Themeforest but after you buy them you find numerous problems, bugs, crazy admin and very very poor support. I purchased the Avada theme and there were a couple of problems too, but the guys from ThemeFusion were remarkable – I really mean this. The speed of support and attention to detail is quite phenomenal. You will be extremely pleased.[/testimonial][/testimonials][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#c6c6c6\" border_style=\"\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">Join The 70,000+ Satisfied Avada Users!</h1>\r\n[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" stretch=\"default\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]I\'m Sold, Buy Avada Now![/button][/one_third][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-05-31 20:57:58','2016-05-31 20:57:58','',4,'http://localhost/vantage/index.php/2016/05/31/4-revision-v1/',0,'revision','',0),(19,1,'2016-05-31 21:15:11','2016-05-31 21:15:11','','ink-slide','','publish','closed','closed','','ink-slide','','','2016-06-01 17:14:31','2016-06-01 17:14:31','',0,'http://localhost/vantage/?post_type=slide&#038;p=19',0,'slide','',0),(20,1,'2016-05-31 21:15:42','2016-05-31 21:15:42','','01','','inherit','open','closed','','01-2','','','2016-05-31 21:15:42','2016-05-31 21:15:42','',19,'http://localhost/vantage/wp-content/uploads/2016/05/01-1.jpg',0,'attachment','image/jpeg',0),(21,1,'2016-05-31 21:17:28','2016-05-31 21:17:28','[menu_anchor name=\"home\"][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"intro\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"35px\" padding_bottom=\"15px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">Free Updates &amp; Support: You Need It, We Gladly Provide It.</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Our #1 priority is you, the user. We believe in our product and hold ourselves to the highest standards. We truly care about your site as much as you do, which is why we offer the best support around at our dedicated support center. In addition, Avada constantly offers free updates with new features requested by our users. You can count on us.</p>\r\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" stretch=\"default\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Macbook Image\" />[/imageframe][/one_half][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][counters_box columns=\"4\" color=\"\" title_size=\"\" icon_size=\"\" icon_top=\"\" body_color=\"\" body_size=\"\" border_color=\"\" animation_offset=\"\" class=\"\" id=\"\"][counter_box value=\"70000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Wonderful Users &amp; Counting[/counter_box][counter_box value=\"25000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Support Threads Resolved[/counter_box][counter_box value=\"8000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Hours of Development[/counter_box][counter_box value=\"11000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Cups of Coffee[/counter_box][/counters_box][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"features\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">Endless Possibilities: The Only Theme You Need</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Avada\'s powerful theme and meta options along with its unique structure lets you create any design style with just one theme. These simple yet powerful options allow you to create any type of website. No two versions of Avada will ever look the same.</p>\r\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/combo_text.jpg\" alt=\"\" />[/imageframe][/fullwidth][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"30px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">Incredible Features: The Proof Is In The Pudding</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important; color: #b1b1b1 !important;\">Avada is loaded with useful features, each one with its own meaningful purpose. We listen to our users and integrate their feature requests on a regular basis. Avada is not only built by us, but also by our users.</p>\r\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Ultra-Responsive Design</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada is 100% responsive, each and every element including the awesome premium sliders are fully responsive. And the responsive mode can easily be turned on or off in the theme options panel![/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Advanced Theme Options</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]We include an extremely advanced admin panel allowing users to quickly and easily customize the theme. These options are intuitive and very powerful and best of all are fun to use![/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Powerful Page Options</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada\'s meta options make it easy to customize your content for each page, blog, portfolio or FAQ post. Apply sliders, backgrounds, colors, icons, sidebars to name a few.[/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Headers &amp; Megamenu</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada includes 5 different header designs to choose from, a sticky header option and an amazing widgetized megamenu! Unlike other themes, we give you control over the header elements.[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Fusion-Core Shortcodes</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Our Shortcode Generator is a pleasure to use and has an amazingly beautiful user interface! Quickly and easily build your own custom pages using all the various shortcodes that Avada includes.[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Premium Sliders</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada has you covered and includes sliders for regular images and videos, or beautifully animated slides, or post sliders. Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider![/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Translation &amp; RTL</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Not only is Avada translation ready, we also Include several languages already translated! Need RTL? No problem! And Avada is 100% WPML &amp; qTranslate compatible for multi-lingual site![/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Advanced Blog Options</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]6 Layouts to choose from; unlimited blog pages, custom categories per page, premium sliders, reorder posts, awesome rollover effects, custom featured image size per post to name a few![/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2>Advanced Portfolio Options</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Multiple layout styles, unlimited portfolio pages, custom categories per page, awesome rollover effects, full or half-width detail page, custom featured image size, filters to name a few![/fusion_text][/one_third][/fullwidth][section_separator divider_candy=\"top\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"35px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">Those Are Just A Few Main Features, There Are Plenty More</h1>\r\n[/fusion_text][separator style_type=\"double\" top_margin=\"5\" bottom_margin=\"35\" sep_color=\"#555555\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"#333333\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Easy Installation &amp; Setup</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Fully Customizable Options</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">One Click Demo Content Importer</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Auto Theme Updater</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Retina Ready For Enabled Devices</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Custom Backgrounds Per Page/Post</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Awesome Widgetized MegaMenu</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Unlimited Colors / Skins</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Powerful Customization Options</p>\r\n[/li_item][/checklist][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"#333333\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">One Page Parallax For Any Page</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">WooCommerce Design Integration</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">bbPress Forum Design Integration</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Font Icons Instead of Images</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Eye-Catching CSS3 Animations</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Boxed or Wide Per Page/Post</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Extensive Doc &amp; HD Videos</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Top Notch Support Service</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Constant Updates &amp; New Features</p>\r\n[/li_item][/checklist][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"#333333\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Incredible Shortcode Options</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Custom Menu Per Page/Post</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Font Awesome Icon Integration</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Advanced Typography Options</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Strong SEO Base Built In</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Unlimited Sidebar Creation</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Multiple Custom Widgets</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Four Premium Sliders</p>\r\n[/li_item][li_item icon=\"\"]\r\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Fully Optimized For Speed</p>\r\n[/li_item][/checklist][/one_third][/fullwidth][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"10px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" stretch=\"default\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.09)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"rgba(255,255,255,.9)\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]I\'m Sold, Buy Avada Now![/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"#fff\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"pages\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">Custom Pages: Have No Limits.</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Avada gives you limitless potential to build amazing pages. Easily create unique page layouts using the tools we provide. In addition, we have you covered with dozens of beautiful pre-designed pages you can quickly choose from.</p>\r\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"Avada Admin\" />[/imageframe][/one_third][/fullwidth][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"30px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">Layout Options: Decision, Decisions, Decisions</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important; color: #b1b1b1 !important;\">Avada does not limit you to one setup, we prefer to give you options. From boxed layout to wide, left sidebars to right and multiple headers; we let you decide. That\'s right, you can have your cake and eat some too.</p>\r\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/bkgd13.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"85px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Left Sidebar / Content</h2>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Content / Right Sidebar</h2>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">No Sidebar Full Content</h2>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Boxed Layout</h2>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Full Width Layout</h2>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">100% Width For Page Content</h2>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Logo / Menu</h2>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Menu / Logo &amp; Menu</h2>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/full_width.png\" alt=\"Avada Admin\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">Menu / Logo / Menu</h2>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"woocommerce\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">What Else? Full Design Integration For WooCommerce</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Need an online shop? No problem, Avada includes integration for the most popular shop plugin, WooCommerce. Our custom design and unique shop shortcodes will allow your products to shine.</p>\r\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/woo_feature2.jpg\" alt=\"\" />[/imageframe][/fullwidth][fullwidth background_color=\"\" background_image=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#c6c6c6\" border_style=\"\" padding_top=\"65px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"demo\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">Ridiculously Easy Setup: True One Click Demo Import</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Many themes claim to have a quick setup, but leave you dealing with several XML files to manually import. Who wants to do that? We sure don\'t. Avada truly offers a quick, easy setup. Install the theme, click the demo content button and you receive a demo setup of pages, post, sliders, sidebars, widgets, theme options and more. It doesn\'t get any easier, our demo content importer is a beautiful thing.</p>\r\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" stretch=\"default\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"fusion2\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]WHAT ELSE YOU GOT?[/button][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"27\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/demo_content.png\" alt=\"demo_content\" />[/imageframe][/one_half][/fullwidth][modal name=\"fusion2\" title=\"How About This Wicked Cool Popup Modal?\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #333333;\">Avada\'s Humbled History</span></h1>\r\n[separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"#cdcdcd\" icon=\"fa-heart-o\" width=\"820px\" class=\"\" id=\"\"] <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><img class=\"alignnone size-full wp-image-9655\" src=\"http://theme-fusion.com/avada/wp-content/uploads/2014/06/avada_history.jpg\" alt=\"test_graphic\" width=\"858\" height=\"497\" /></a>[/modal][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"shortcodes\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">Shortcodes: We Make Them, You Use Them.</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Shortcodes are the backbone of page design for any theme, and Avada offers a huge set. We include all the standard shortcodes and also a wide variety of unique shortcodes, each with their own amazing options to customize to your heart\'s content. Avada shortcodes allow you to build a variety of pages, and with our shortcode generator it\'s not only useful, it\'s fun.</p>\r\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/shortcodes2.jpg\" alt=\"shortcodes\" />[/imageframe][/fullwidth][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"30px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"reviews\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">User Reviews: We Love our Users, And They Love Us.</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important; color: #b1b1b1 !important;\">We are fully dedicated to user base. When you buy Avada, there is no need to worry about customer support. With over 50,000 users and counting, you cannot go wrong with Avada. Check out what our users are saying about Avada!</p>\r\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"65px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 31px !important; font-style: italic !important;\">\"WOW – This is the Best Theme I have ever seen.\"</h1>\r\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 26px !important; color: #747474 !important; font-style: italic !important;\">WOW – I dont really know what else to say. This is the Best Theme I have ever seen. I am a full time web dev, and this theme blows me away. I wanted to thank you for all your hard work. I am really looking forward to building my new site! I think you thought of everything and then some. Thank you so much for this theme, WOW- AMAZING!\" <strong>- MarketingMonsters</strong></p>\r\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"45\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Aajami\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I bought this theme and i would like to recommend it to every one interested in building a website without knowledge of php or html. It is very convenient and the customer service is very reactive. I will say it in French \"Bravo\" for this work![/testimonial][/testimonials][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Lucasgriffin\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Amazing theme and top class support, as I\'m a beginner, Luke helped me above and beyond and was more than patient, his responses were quick and he has a genuine care for you to enjoy and move forward with your theme!.. highly recommended theme and author! [/testimonial][/testimonials][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Gojcus\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Let me say something. You have an amazing theme and amazing/awesome support. They helped me on weekend. This is what I call an \"extra mile\" in customer relationship. So I gave 5 stars for the theme and if I could, I\'d give 10 stars for support.[/testimonial][/testimonials][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"William Genske\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thank you for your very professional and prompt response. I went to look for answers to my own questions and quickly realized that the information I was requesting was very easy to find. As were the videos and the instructions. In fact everything has been perfect so far. This is by far the most well supported theme I have ever had the pleasure to work with. Lots of wonderful options. I wished I had found you before I spent money on a competitors theme. Thanks again for the great support and for a great product. [/testimonial][/testimonials][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Stuartyboy\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]If I could give 100 stars for support and attention to detail I definitely would. I\'ve purchased a good number of Wordpress themes from various developers that look good on Themeforest but after you buy them you find numerous problems, bugs, crazy admin and very very poor support. I purchased the Avada theme and there were a couple of problems too, but the guys from ThemeFusion were remarkable – I really mean this. The speed of support and attention to detail is quite phenomenal. You will be extremely pleased.[/testimonial][/testimonials][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"http://theme-fusion.com/avadaxml/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#c6c6c6\" border_style=\"\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center; font-size: 30px !important;\">Join The 70,000+ Satisfied Avada Users!</h1>\r\n[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" stretch=\"default\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]I\'m Sold, Buy Avada Now![/button][/one_third][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-05-31 21:17:28','2016-05-31 21:17:28','',4,'http://localhost/vantage/index.php/2016/05/31/4-revision-v1/',0,'revision','',0),(22,1,'2016-05-31 21:22:06','2016-05-31 21:22:06','[menu_anchor name=\"home\"][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"intro\" class=\"\" id=\"\"][fusionslider name=\"ink-fusion-slider\" class=\"\" id=\"\"][/fusionslider][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-05-31 21:22:06','2016-05-31 21:22:06','',4,'http://localhost/vantage/index.php/2016/05/31/4-revision-v1/',0,'revision','',0),(23,1,'2016-05-31 21:24:04','2016-05-31 21:24:04','[menu_anchor name=\"home\"][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"intro\" class=\"\" id=\"\"][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-05-31 21:24:04','2016-05-31 21:24:04','',4,'http://localhost/vantage/index.php/2016/05/31/4-revision-v1/',0,'revision','',0),(28,1,'2016-05-31 21:55:13','2016-05-31 21:55:13','','self-video','','publish','closed','closed','','self-video','','','2016-06-01 00:29:54','2016-06-01 00:29:54','',0,'http://localhost/vantage/?post_type=slide&#038;p=28',0,'slide','',0),(29,1,'2016-05-31 21:54:08','2016-05-31 21:54:08','','file','','inherit','open','closed','','file','','','2016-06-12 12:40:29','2016-06-12 12:40:29','',182,'http://localhost/vantage/wp-content/uploads/2016/05/file.mp4',0,'attachment','video/mp4',0),(30,1,'2016-05-31 21:57:02','2016-05-31 21:57:02','[menu_anchor name=\"home\"][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"intro\" class=\"\" id=\"\"][fusionslider name=\"video-slider\" class=\"\" id=\"\"][/fusionslider][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-05-31 21:57:02','2016-05-31 21:57:02','',4,'http://localhost/vantage/index.php/2016/05/31/4-revision-v1/',0,'revision','',0),(31,1,'2016-05-31 22:04:02','2016-05-31 22:04:02','[menu_anchor name=\"home\"][section_separator divider_candy=\"\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"\" backgroundcolor=\"\" class=\"\" id=\"\"][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"intro\" class=\"\" id=\"\"][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-05-31 22:04:02','2016-05-31 22:04:02','',4,'http://localhost/vantage/index.php/2016/05/31/4-revision-v1/',0,'revision','',0),(32,1,'2016-05-31 22:10:02','2016-05-31 22:10:02','[menu_anchor name=\"home\"][section_separator divider_candy=\"\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"\" backgroundcolor=\"\" class=\"\" id=\"\"][menu_anchor name=\"services\"][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"intro\" class=\"\" id=\"\"][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-05-31 22:10:02','2016-05-31 22:10:02','',4,'http://localhost/vantage/index.php/2016/05/31/4-revision-v1/',0,'revision','',0),(33,1,'2016-05-31 22:15:12','2016-05-31 22:15:12','[menu_anchor name=\"home\"][section_separator divider_candy=\"\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"\" backgroundcolor=\"\" class=\"\" id=\"\"][menu_anchor name=\"services\"][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"intro\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]SERVICES[/title][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-05-31 22:15:12','2016-05-31 22:15:12','',4,'http://localhost/vantage/index.php/2016/05/31/4-revision-v1/',0,'revision','',0),(34,1,'2016-05-31 22:51:57','2016-05-31 22:51:57','[menu_anchor name=\"home\"][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"\" sep_color=\"#ebba4d\" border_size=\"25px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"\" sep_color=\"#ebba4d\" border_size=\"25px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_third][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-05-31 22:51:57','2016-05-31 22:51:57','',4,'http://localhost/vantage/index.php/2016/05/31/4-revision-v1/',0,'revision','',0),(35,1,'2016-05-31 22:53:50','2016-05-31 22:53:50','[menu_anchor name=\"home\"][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_third][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-05-31 22:53:50','2016-05-31 22:53:50','',4,'http://localhost/vantage/index.php/2016/05/31/4-revision-v1/',0,'revision','',0),(36,1,'2016-05-31 23:38:42','2016-05-31 23:38:42','[menu_anchor name=\"home\"][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center;\">Helping you build an authentic brand.</p>[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center;\">Equipping you for the digital age.</p>[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center;\">Striving for the wow-factor.</p>[/fusion_text][/one_third][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-05-31 23:38:42','2016-05-31 23:38:42','',4,'http://localhost/vantage/index.php/2016/05/31/4-revision-v1/',0,'revision','',0),(37,1,'2016-06-01 00:20:41','2016-06-01 00:20:41','','logo','','inherit','open','closed','','logo','','','2016-06-01 00:20:41','2016-06-01 00:20:41','',0,'http://localhost/vantage/wp-content/uploads/2016/06/logo.png',0,'attachment','image/png',0),(41,1,'2016-06-01 00:30:05','2016-06-01 00:30:05','','self-video','','inherit','closed','closed','','28-autosave-v1','','','2016-06-01 00:30:05','2016-06-01 00:30:05','',28,'http://localhost/vantage/index.php/2016/06/01/28-autosave-v1/',0,'revision','',0),(42,1,'2016-06-01 00:36:33','2016-06-01 00:36:33','[menu_anchor name=\"home\"][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 00:36:33','2016-06-01 00:36:33','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(43,1,'2016-06-01 00:59:27','2016-06-01 00:59:27','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"shake\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 00:59:27','2016-06-01 00:59:27','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(44,1,'2016-06-01 01:17:12','2016-06-01 01:17:12','','02','','inherit','open','closed','','02','','','2016-06-01 01:17:12','2016-06-01 01:17:12','',4,'http://localhost/vantage/wp-content/uploads/2016/05/02.jpg',0,'attachment','image/jpeg',0),(45,1,'2016-06-01 01:52:23','2016-06-01 01:52:23','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGI+PGEgaHJlZj0iIyI+T1VSIFZBTFVFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"2px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGI+PGEgaHJlZj0iIyI+T1VSIENBUEFCSUxJVElFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"2px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 01:52:23','2016-06-01 01:52:23','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(46,1,'2016-06-01 01:57:22','2016-06-01 01:57:22','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"2px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"2px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 01:57:22','2016-06-01 01:57:22','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(47,1,'2016-06-01 01:59:07','2016-06-01 01:59:07','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"2px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"2px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 01:59:07','2016-06-01 01:59:07','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(48,1,'2016-06-01 02:16:53','2016-06-01 02:16:53','','option1','','inherit','open','closed','','option1','','','2016-06-01 02:16:53','2016-06-01 02:16:53','',19,'http://localhost/vantage/wp-content/uploads/2016/05/option1.gif',0,'attachment','image/gif',0),(49,1,'2016-06-01 02:20:45','2016-06-01 02:20:45','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 02:20:45','2016-06-01 02:20:45','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(51,1,'2016-06-01 02:28:45','2016-06-01 02:28:45','Fashion','fashion','','inherit','open','closed','','fashion','','','2016-06-01 15:48:34','2016-06-01 15:48:34','',0,'http://localhost/vantage/wp-content/uploads/2016/06/fashion.png',0,'attachment','image/png',0),(52,1,'2016-06-01 09:39:31','2016-06-01 09:39:31','','clients1','','inherit','open','closed','','clients1','','','2016-06-01 09:39:31','2016-06-01 09:39:31','',4,'http://localhost/vantage/wp-content/uploads/2016/05/clients1.png',0,'attachment','image/png',0),(53,1,'2016-06-01 09:39:36','2016-06-01 09:39:36','','clients2','','inherit','open','closed','','clients2','','','2016-06-01 09:39:36','2016-06-01 09:39:36','',4,'http://localhost/vantage/wp-content/uploads/2016/05/clients2.png',0,'attachment','image/png',0),(54,1,'2016-06-01 09:56:26','2016-06-01 09:56:26','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]<h3 style=\"text-align: center;\">Creating winning partnerships</h3>[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"medium\"  stretch=\"yes\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_half][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 09:56:26','2016-06-01 09:56:26','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(55,1,'2016-06-01 10:15:55','2016-06-01 10:15:55','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"medium\" stretch=\"yes\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 10:15:55','2016-06-01 10:15:55','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(56,1,'2016-06-01 10:20:36','2016-06-01 10:20:36','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"medium\"  stretch=\"yes\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 10:20:36','2016-06-01 10:20:36','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(57,1,'2016-06-01 10:25:47','2016-06-01 10:25:47','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"medium\"  stretch=\"yes\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 10:25:47','2016-06-01 10:25:47','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(58,1,'2016-06-01 10:30:12','2016-06-01 10:30:12','','ink-slide','','inherit','closed','closed','','19-autosave-v1','','','2016-06-01 10:30:12','2016-06-01 10:30:12','',19,'http://localhost/vantage/index.php/2016/06/01/19-autosave-v1/',0,'revision','',0),(59,1,'2016-06-01 10:36:36','2016-06-01 10:36:36','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][menu_anchor name=\"work\"][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"medium\"  stretch=\"yes\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 10:36:36','2016-06-01 10:36:36','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(60,1,'2016-06-01 10:37:35','2016-06-01 10:37:35','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"medium\"  stretch=\"yes\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 10:37:35','2016-06-01 10:37:35','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(61,1,'2016-06-01 11:02:47','2016-06-01 11:02:47','','blog','','inherit','open','closed','','blog-2','','','2016-06-01 11:02:47','2016-06-01 11:02:47','',4,'http://localhost/vantage/wp-content/uploads/2016/05/blog.png',0,'attachment','image/png',0),(62,1,'2016-06-01 11:39:34','2016-06-01 11:39:34','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"medium\"  stretch=\"yes\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"150px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\"></p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 11:39:34','2016-06-01 11:39:34','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(63,1,'2016-06-01 12:01:21','2016-06-01 12:01:21','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"medium\"  stretch=\"yes\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/two_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<p class=\"font_7\">28-N, Industrial Area, Gulberg-II,</p>\r\n<p class=\"font_7\">Lahore, Pakistan</p>[/fusion_text][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\"></p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 12:01:21','2016-06-01 12:01:21','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(64,1,'2016-06-01 12:42:02','2016-06-01 12:42:02','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"medium\" stretch=\"yes\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#e2e2e2\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" alt=\"\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 12:42:02','2016-06-01 12:42:02','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(65,1,'2016-06-01 12:43:30','2016-06-01 12:43:30','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"medium\"  stretch=\"yes\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#fffffff\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 12:43:30','2016-06-01 12:43:30','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(66,1,'2016-06-01 12:45:11','2016-06-01 12:45:11','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"medium\"  stretch=\"yes\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 12:45:11','2016-06-01 12:45:11','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(67,1,'2016-06-01 12:54:56','2016-06-01 12:54:56','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 12:54:56','2016-06-01 12:54:56','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(68,1,'2016-06-01 12:58:41','2016-06-01 12:58:41','<div class=\"form-contact\">\r\n<div class=\"form-left\">\r\n<p>[text* your-name placeholder \"Name\"]</p>\r\n\r\n<p>[email* your-email placeholder \"Email\"] </p>\r\n\r\n<p>[text your-subject placeholder \"Subject\"] </p>\r\n</div>\r\n<div class=\"form-right\">\r\n\r\n<p>[textarea your-message placeholder \"Message\"] </p>\r\n\r\n<p>[submit \"Send\"]</p>\r\n</div>\r\n</div>\nMessage from VantagePrinters.com \"[your-subject]\"\n[your-name] <wordpress@vantageprinters.com/vital>\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 www.vantage.com (http://localhost/vantage)\nsaqib@vantageprinters.com/vital\nReply-To: [your-email]\n\n\n\n\nwww.vantage.com \"[your-subject]\"\nwww.vantage.com <faran_ahmad86@yahoo.com>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on www.vantage.com (http://localhost/vantage)\n[your-email]\nReply-To: faran_ahmad86@yahoo.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2016-06-12 12:54:01','2016-06-12 12:54:01','',0,'http://localhost/vantage/?post_type=wpcf7_contact_form&#038;p=68',0,'wpcf7_contact_form','',0),(69,1,'2016-06-01 13:14:00','2016-06-01 13:14:00','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 13:14:00','2016-06-01 13:14:00','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(70,1,'2016-06-01 13:23:23','2016-06-01 13:23:23','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 13:23:23','2016-06-01 13:23:23','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(71,1,'2016-06-01 15:17:14','2016-06-01 15:17:14','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 15:17:14','2016-06-01 15:17:14','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(72,1,'2016-06-01 15:22:29','2016-06-01 15:22:29','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 15:22:29','2016-06-01 15:22:29','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(73,1,'2016-06-01 15:39:58','2016-06-01 15:39:58','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"#ov\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][fusion_code]PHNwYW4gY2xhc3M9Im92ZXIiPkZhc2hpb248L3NwYW4+[/fusion_code][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.3\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"img01\" src=\"http://localhost/vantage/wp-content/uploads/2016/06/fashion.png\" />[/imageframe][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 15:39:58','2016-06-01 15:39:58','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(74,1,'2016-06-01 15:41:37','2016-06-01 15:41:37','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 15:41:37','2016-06-01 15:41:37','',4,'http://localhost/vantage/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(77,1,'2016-06-01 15:49:24','2016-06-01 15:49:24','','590e88_1d7c24ef047b4e8580d8d345e3ce269c','','inherit','open','closed','','590e88_1d7c24ef047b4e8580d8d345e3ce269c','','','2016-06-01 15:49:24','2016-06-01 15:49:24','',0,'http://localhost/vantage/wp-content/uploads/2016/06/590e88_1d7c24ef047b4e8580d8d345e3ce269c.jpg',0,'attachment','image/jpeg',0),(78,1,'2016-06-01 15:49:57','2016-06-01 15:49:57','','590e88_5d9abc7a52db42b5913859b073af3b2c','','inherit','open','closed','','590e88_5d9abc7a52db42b5913859b073af3b2c','','','2016-06-01 15:49:57','2016-06-01 15:49:57','',0,'http://localhost/vantage/wp-content/uploads/2016/06/590e88_5d9abc7a52db42b5913859b073af3b2c.jpg',0,'attachment','image/jpeg',0),(79,1,'2016-06-01 15:50:29','2016-06-01 15:50:29','','590e88_26cba0703ca34423b7ab153fcf1571a8','','inherit','open','closed','','590e88_26cba0703ca34423b7ab153fcf1571a8','','','2016-06-01 15:50:29','2016-06-01 15:50:29','',0,'http://localhost/vantage/wp-content/uploads/2016/06/590e88_26cba0703ca34423b7ab153fcf1571a8.jpg',0,'attachment','image/jpeg',0),(80,1,'2016-06-01 15:50:33','2016-06-01 15:50:33','','590e88_48c4602c9fd64d84b89f89c3f232f692','','inherit','open','closed','','590e88_48c4602c9fd64d84b89f89c3f232f692','','','2016-06-01 15:50:33','2016-06-01 15:50:33','',0,'http://localhost/vantage/wp-content/uploads/2016/06/590e88_48c4602c9fd64d84b89f89c3f232f692.jpg',0,'attachment','image/jpeg',0),(81,1,'2016-06-01 15:50:48','2016-06-01 15:50:48','','590e88_a178af1ade0a4f3a84cc65a14844221c','','inherit','open','closed','','590e88_a178af1ade0a4f3a84cc65a14844221c','','','2016-06-01 15:50:48','2016-06-01 15:50:48','',0,'http://localhost/vantage/wp-content/uploads/2016/06/590e88_a178af1ade0a4f3a84cc65a14844221c.jpg',0,'attachment','image/jpeg',0),(82,1,'2016-06-01 15:50:53','2016-06-01 15:50:53','','590e88_ae2d54bb38e243aa9446b6d5b88f6b84','','inherit','open','closed','','590e88_ae2d54bb38e243aa9446b6d5b88f6b84','','','2016-06-01 15:53:09','2016-06-01 15:53:09','',0,'http://localhost/vantage/wp-content/uploads/2016/06/590e88_ae2d54bb38e243aa9446b6d5b88f6b84.jpg',0,'attachment','image/jpeg',0),(83,1,'2016-06-01 15:50:59','2016-06-01 15:50:59','','590e88_b8cafdfdd3fd4f839cf47437bf61eb31','','inherit','open','closed','','590e88_b8cafdfdd3fd4f839cf47437bf61eb31','','','2016-06-01 15:50:59','2016-06-01 15:50:59','',0,'http://localhost/vantage/wp-content/uploads/2016/06/590e88_b8cafdfdd3fd4f839cf47437bf61eb31.jpg',0,'attachment','image/jpeg',0),(84,1,'2016-06-01 15:51:02','2016-06-01 15:51:02','','590e88_c7881ba34f2a4a0487a141964055de97','','inherit','open','closed','','590e88_c7881ba34f2a4a0487a141964055de97','','','2016-06-01 15:52:13','2016-06-01 15:52:13','',0,'http://localhost/vantage/wp-content/uploads/2016/06/590e88_c7881ba34f2a4a0487a141964055de97.jpg',0,'attachment','image/jpeg',0),(87,1,'2016-06-01 17:00:29','2016-06-01 17:00:29','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 17:00:29','2016-06-01 17:00:29','',4,'http://vantageprinters.com/vital/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(88,1,'2016-06-01 17:01:47','2016-06-01 17:01:47','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 17:01:47','2016-06-01 17:01:47','',4,'http://vantageprinters.com/vital/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(89,1,'2016-06-01 17:10:37','2016-06-01 17:10:37','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://http://vantageprinters.com/vital/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 17:10:37','2016-06-01 17:10:37','',4,'http://vantageprinters.com/vital/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(90,1,'2016-06-01 17:13:09','2016-06-01 17:13:09','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://localhost/vantage/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://http://vantageprinters.com/vital/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 17:13:09','2016-06-01 17:13:09','',4,'http://vantageprinters.com/vital/index.php/2016/06/01/4-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (91,1,'2016-06-01 17:15:40','2016-06-01 17:15:40','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/vantage/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/vantage/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 17:15:40','2016-06-01 17:15:40','',4,'http://vantageprinters.com/vital/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(92,1,'2016-06-01 17:18:53','2016-06-01 17:18:53','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 17:18:53','2016-06-01 17:18:53','',4,'http://vantageprinters.com/vital/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(94,1,'2016-06-01 19:52:53','2016-06-01 19:52:53','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"font-size: 50px; font-weight: 900;\" class=\"font_4\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 19:52:53','2016-06-01 19:52:53','',4,'http://vantageprinters.com/vital/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(95,1,'2016-06-01 19:55:06','2016-06-01 19:55:06','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"    font-size: 80px;  font-weight: 900;    font-family: Roboto;    letter-spacing: 10px;    line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 19:55:06','2016-06-01 19:55:06','',4,'http://vantageprinters.com/vital/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(96,1,'2016-06-01 19:56:55','2016-06-01 19:56:55','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"    font-size: 80px;  font-weight: 900;    font-family: Roboto;    letter-spacing: 10px;    line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 20px; font-weight: 300; font-family: Roboto; letter-spacing: 4px; line-height: 20px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 19:56:55','2016-06-01 19:56:55','',4,'http://vantageprinters.com/vital/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(97,1,'2016-06-01 19:58:45','2016-06-01 19:58:45','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"    font-size: 80px;  font-weight: 900;    font-family: Roboto;    letter-spacing: 10px;    line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px;\r\n    font-weight: 300;\r\n    font-family: Roboto;\r\n    line-height: 34px;\r\n    width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]BRANDING[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Helping you build an authentic brand.</p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]DIGITAL[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Equipping you for the digital age.</p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]PRINT[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center;\">Striving for the wow-factor.</p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 19:58:45','2016-06-01 19:58:45','',4,'http://vantageprinters.com/vital/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(98,1,'2016-06-01 20:04:36','2016-06-01 20:04:36','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"    font-size: 80px;  font-weight: 900;    font-family: Roboto;    letter-spacing: 10px;    line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px;\r\n    font-weight: 300;\r\n    font-family: Roboto;\r\n    line-height: 34px;\r\n    width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Helping you build an authentic brand.</em></p>[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Equipping you for the digital age.</em></p>[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Striving for the wow-factor.</em></p>[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"grey\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]We are a team of thinkers and makers.[/title][fusion_text]<p class=\"font_20\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</p>[/fusion_text][/two_fifth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 20:04:36','2016-06-01 20:04:36','',4,'http://vantageprinters.com/vital/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(99,1,'2016-06-01 20:37:02','2016-06-01 20:37:02','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"    font-size: 80px;  font-weight: 900;    font-family: Roboto;    letter-spacing: 10px;    line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px;\r\n    font-weight: 300;\r\n    font-family: Roboto;\r\n    line-height: 34px;\r\n    width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Helping you build an authentic brand.</em></p>[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Equipping you for the digital age.</em></p>[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Striving for the wow-factor.</em></p>[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"text-transform: uppercase;font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 20:37:02','2016-06-01 20:37:02','',4,'http://vantageprinters.com/vital/index.php/2016/06/01/4-revision-v1/',0,'revision','',0),(101,1,'2016-06-01 20:47:43','2016-06-01 20:47:43','','Fashion','','publish','closed','closed','','fashion','','','2016-06-01 20:46:12','2016-06-01 20:46:12','',0,'http://vantageprinters.com/vital/?post_type=wpb_fp_portfolio&#038;p=101',0,'wpb_fp_portfolio','',0),(102,1,'2016-06-01 20:46:04','2016-06-01 20:46:04','','Automotive','','publish','closed','closed','','automotive','','','2016-06-01 20:46:04','2016-06-01 20:46:04','',0,'http://vantageprinters.com/vital/?post_type=wpb_fp_portfolio&#038;p=102',0,'wpb_fp_portfolio','',0),(103,1,'2016-06-01 20:45:58','2016-06-01 20:45:58','','Healthcare','','publish','closed','closed','','healthcare','','','2016-06-01 20:45:58','2016-06-01 20:45:58','',0,'http://vantageprinters.com/vital/?post_type=wpb_fp_portfolio&#038;p=103',0,'wpb_fp_portfolio','',0),(104,1,'2016-06-01 20:45:21','2016-06-01 20:45:21','','Healthcare','','inherit','open','closed','','healthcare','','','2016-06-01 20:45:21','2016-06-01 20:45:21','',101,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Healthcare.jpg',0,'attachment','image/jpeg',0),(105,1,'2016-06-01 20:45:25','2016-06-01 20:45:25','','Panamera S E-Hybrid','Panamera S E-Hybrid','inherit','open','closed','','panamera-s-e-hybrid','','','2016-06-01 20:45:25','2016-06-01 20:45:25','',101,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Automotive.jpg',0,'attachment','image/jpeg',0),(106,1,'2016-06-01 20:45:32','2016-06-01 20:45:32','','fashion','','inherit','open','closed','','fashion-2','','','2016-06-01 20:45:32','2016-06-01 20:45:32','',101,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/fashion-1.png',0,'attachment','image/png',0),(107,1,'2016-06-01 20:46:17','2016-06-01 20:46:17','','Fashion','','inherit','closed','closed','','101-autosave-v1','','','2016-06-01 20:46:17','2016-06-01 20:46:17','',101,'http://vantageprinters.com/vital/index.php/2016/06/01/101-autosave-v1/',0,'revision','',0),(108,1,'2016-06-01 20:50:49','2016-06-01 20:50:49','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"    font-size: 80px;  font-weight: 900;    font-family: Roboto;    letter-spacing: 10px;    line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px;\r\n    font-weight: 300;\r\n    font-family: Roboto;\r\n    line-height: 34px;\r\n    width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Helping you build an authentic brand.</em></p>[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Equipping you for the digital age.</em></p>[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Striving for the wow-factor.</em></p>[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"3\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"text-transform: uppercase;font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 20:50:49','2016-06-01 20:50:49','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(109,1,'2016-06-01 20:53:11','2016-06-01 20:53:11','','Automotive','','publish','open','closed','','automotive','','','2016-06-01 20:53:11','2016-06-01 20:53:11','',0,'http://vantageprinters.com/vital/?post_type=avada_portfolio&#038;p=109',0,'avada_portfolio','',0),(110,1,'2016-06-01 20:53:06','2016-06-01 20:53:06','','Healthcare','','publish','open','closed','','healthcare','','','2016-06-01 20:53:06','2016-06-01 20:53:06','',0,'http://vantageprinters.com/vital/?post_type=avada_portfolio&#038;p=110',0,'avada_portfolio','',0),(111,1,'2016-06-01 20:53:16','2016-06-01 20:53:16','','Fashion','','publish','open','closed','','fashion','','','2016-06-01 20:53:16','2016-06-01 20:53:16','',0,'http://vantageprinters.com/vital/?post_type=avada_portfolio&#038;p=111',0,'avada_portfolio','',0),(112,1,'2016-06-01 20:52:19','2016-06-01 20:52:19','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"    font-size: 80px;  font-weight: 900;    font-family: Roboto;    letter-spacing: 10px;    line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px;\r\n    font-weight: 300;\r\n    font-family: Roboto;\r\n    line-height: 34px;\r\n    width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Helping you build an authentic brand.</em></p>[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Equipping you for the digital age.</em></p>[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Striving for the wow-factor.</em></p>[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"3\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"text-transform: uppercase;font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 20:52:19','2016-06-01 20:52:19','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(113,1,'2016-06-01 20:53:06','2016-06-01 20:53:06','','Healthcare','','inherit','closed','closed','','110-revision-v1','','','2016-06-01 20:53:06','2016-06-01 20:53:06','',110,'http://vantageprinters.com/vital/110-revision-v1/',0,'revision','',0),(114,1,'2016-06-01 20:53:11','2016-06-01 20:53:11','','Automotive','','inherit','closed','closed','','109-revision-v1','','','2016-06-01 20:53:11','2016-06-01 20:53:11','',109,'http://vantageprinters.com/vital/109-revision-v1/',0,'revision','',0),(115,1,'2016-06-01 20:53:16','2016-06-01 20:53:16','','Fashion','','inherit','closed','closed','','111-revision-v1','','','2016-06-01 20:53:16','2016-06-01 20:53:16','',111,'http://vantageprinters.com/vital/111-revision-v1/',0,'revision','',0),(116,1,'2016-06-01 20:59:43','2016-06-01 20:59:43','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"    font-size: 80px;  font-weight: 900;    font-family: Roboto;    letter-spacing: 10px;    line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px;\r\n    font-weight: 300;\r\n    font-family: Roboto;\r\n    line-height: 34px;\r\n    width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Helping you build an authentic brand.</em></p>[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Equipping you for the digital age.</em></p>[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Striving for the wow-factor.</em></p>[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"3\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"text-transform: uppercase;font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 20:59:43','2016-06-01 20:59:43','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(117,1,'2016-06-01 21:02:10','2016-06-01 21:02:10','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"    font-size: 80px;  font-weight: 900;    font-family: Roboto;    letter-spacing: 10px;    line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px;\r\n    font-weight: 300;\r\n    font-family: Roboto;\r\n    line-height: 34px;\r\n    width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Helping you build an authentic brand.</em></p>[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Equipping you for the digital age.</em></p>[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Striving for the wow-factor.</em></p>[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"3\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"text-transform: uppercase;font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-01 21:02:10','2016-06-01 21:02:10','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(118,1,'2016-06-01 19:08:22','2016-06-01 19:08:22','','Real Estate','','publish','open','closed','','real-estate','','','2016-06-01 21:08:59','2016-06-01 21:08:59','',0,'http://vantageprinters.com/vital/?post_type=avada_portfolio&#038;p=118',0,'avada_portfolio','',0),(119,1,'2016-06-01 19:08:23','2016-06-01 19:08:23','','Beauty','','publish','open','closed','','beauty','','','2016-06-01 21:09:04','2016-06-01 21:09:04','',0,'http://vantageprinters.com/vital/?post_type=avada_portfolio&#038;p=119',0,'avada_portfolio','',0),(120,1,'2016-06-01 19:08:18','2016-06-01 19:08:18','','Telecommunications','','publish','open','closed','','telecommunications','','','2016-06-01 21:08:52','2016-06-01 21:08:52','',0,'http://vantageprinters.com/vital/?post_type=avada_portfolio&#038;p=120',0,'avada_portfolio','',0),(121,1,'2016-06-01 21:07:37','2016-06-01 21:07:37','','Real Estate','','inherit','open','closed','','real-estate','','','2016-06-01 21:07:37','2016-06-01 21:07:37','',119,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Real-Estate.jpg',0,'attachment','image/jpeg',0),(122,1,'2016-06-01 21:07:39','2016-06-01 21:07:39','','Telecommunication','','inherit','open','closed','','telecommunication','','','2016-06-01 21:07:39','2016-06-01 21:07:39','',119,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Telecommunication.jpg',0,'attachment','image/jpeg',0),(123,1,'2016-06-01 21:07:40','2016-06-01 21:07:40','','Beauty','','inherit','open','closed','','beauty','','','2016-06-01 21:07:40','2016-06-01 21:07:40','',119,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Beauty.jpg',0,'attachment','image/jpeg',0),(124,1,'2016-06-01 21:08:18','2016-06-01 21:08:18','','Telecommunications','','inherit','closed','closed','','120-revision-v1','','','2016-06-01 21:08:18','2016-06-01 21:08:18','',120,'http://vantageprinters.com/vital/120-revision-v1/',0,'revision','',0),(125,1,'2016-06-01 21:08:22','2016-06-01 21:08:22','','Real Estate','','inherit','closed','closed','','118-revision-v1','','','2016-06-01 21:08:22','2016-06-01 21:08:22','',118,'http://vantageprinters.com/vital/118-revision-v1/',0,'revision','',0),(126,1,'2016-06-01 21:08:23','2016-06-01 21:08:23','','Beauty','','inherit','closed','closed','','119-revision-v1','','','2016-06-01 21:08:23','2016-06-01 21:08:23','',119,'http://vantageprinters.com/vital/119-revision-v1/',0,'revision','',0),(127,1,'2016-06-02 13:58:04','2016-06-02 13:58:04','','vantage-logo','','inherit','open','closed','','vantage-logo','','','2016-06-02 13:58:04','2016-06-02 13:58:04','',0,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/vantage-logo.png',0,'attachment','image/png',0),(128,1,'2016-06-02 14:41:00','2016-06-02 14:41:00','<p class=\"font_7\"><strong>Inquisitive</strong></p>\r\n<p class=\"font_7\">What’s going on outside in the broader world around us is our concern. We always look for new ways, new ideas, new thinking.</p>\r\n<p class=\"font_7\"><strong>Artistry</strong></p>\r\n<p class=\"font_7\">We strive to get the details right and celebrate the art and craft of our job and we try and do this with flair and finesse.</p>\r\n<p class=\"font_7\"><strong>Entrepreneurship</strong></p>\r\n<p class=\"font_7\">We strive to surpass expectations and to take your breath away with our strategy and creative.</p>\r\n<p class=\"font_7\"><strong>Adaptability</strong></p>\r\n<p class=\"font_7\">We aren’t afraid to do things differently and fitting into new is what we like.</p>\r\n<p class=\"font_7\"><strong>Each Other</strong></p>\r\n<p class=\"font_7\">We’re bighearted with our knowledge and like to share it with each other. We enjoy the eclectic bunch of people that we are and celebrate our diversity joyously.</p>\r\n<p class=\"font_7\"><strong>Integrity</strong></p>\r\n<p class=\"font_7\">We believe in being true to our word. Integrity is non-negotiable to us and we always strive to say what we mean and mean what we say.</p>','Our Values','','publish','closed','closed','','our-values','','','2016-06-02 14:58:21','2016-06-02 14:58:21','',0,'http://vantageprinters.com/vital/?page_id=128',0,'page','',0),(129,1,'2016-06-02 14:41:11','2016-06-02 14:41:11','[fusion_text]<a href=\"#\"><img class=\"aligncenter size-full wp-image-134\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/06/strategy.png\" alt=\"strategy\" width=\"843\" height=\"247\" /></a>[/fusion_text][fusion_text]<h2 class=\"font_7\">Strategy</h2>\r\n<p class=\"font_7\">Creating a winning game plan.</p>\r\n<p class=\"font_7\">Thanks to an extensive industry experience and constant monitoring of trends, we always strive to bring a breadth of knowledge to our clients. Our goal is create a grand design that covers your brand, channel and campaign strategy – helping you out-think and out-perform your competition repeatedly.</p>\r\n\r\n<h2 class=\"font_7\">Creative</h2>\r\n<p class=\"font_7\">Mastering the art of storytelling.</p>\r\n<p class=\"font_7\">Our gifted creative team promotes your brand, inspires your audience and generates response. We build simple and targeted approaches that bring the emotion of storytelling to all our brand campaigns – creating unforgettable user-experiences for all times to come – via:</p>\r\n<p class=\"font_7\">Research | Editing &amp; Proofreading | Creative Concepts | Copywriting</p>\r\n\r\n<h2 class=\"font_7\">Design</h2>\r\n<p class=\"font_7\">Math is easy. Design is hard.</p>\r\n<p class=\"font_7\">The design gurus at Vantage produce content that is visually striking and relevant. They believe in creating thematic concepts which reflect your corporate philosophy with finesse. Over the years, we’ve become champions of launching artworks that not only sell, but win awards both locally and internationally.</p>\r\n<p class=\"font_7\">Since 1992, we’ve won 140 national and 16 international design awards.</p>\r\n\r\n<h2 class=\"font_7\">Imaging</h2>\r\n<p class=\"font_7\">Preparing your content for print and other media – in one go</p>\r\n<p class=\"font_7\">Vantage is one of the first printers in Pakistan to have its very own in-house Computer-to-Plate (CTP) department.</p>\r\n<p class=\"font_7\">Using the industry\'s most advanced prepress technology, our experts swiftly and consistently prepare your files and images in a 100 percent digital PDF-based workflow for the best possible reproduction on press, not to mention other media channels.</p>\r\n<p class=\"font_7\">Tap into Vantage for the following services:</p>\r\n\r\n<ul>\r\n 	<li class=\"font_7\">Scanning, retouching, colour manipulation, vector imaging, special effects and digital page assembly</li>\r\n 	<li class=\"font_7\">Colour management from creative to press</li>\r\n 	<li class=\"font_7\">Soft proofing</li>\r\n 	<li class=\"font_7\">Automated PDF creation, file transfer and conversions</li>\r\n 	<li class=\"font_7\">Asset, workflow, content and rights management</li>\r\n 	<li class=\"font_7\">Advertising resource management</li>\r\n 	<li class=\"font_7\">Digital platemaking</li>\r\n</ul>\r\n<h2 class=\"font_7\">Photography</h2>\r\n<p class=\"font_7\">An eye for detail</p>\r\n<p class=\"font_7\">Our photographers excel at capturing your vision – the desired look and feel of any object, in any setting. Our all-digital workflows, supported by the latest image processing technologies and our colour-management expertise, enable us to capture and perfect images with great speed and accuracy, reducing turnaround time and improving cost efficiencies.</p>[/fusion_text][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth]','Our Capabilities','','publish','closed','closed','','our-capabilities','','','2016-06-02 15:14:26','2016-06-02 15:14:26','',0,'http://vantageprinters.com/vital/?page_id=129',0,'page','',0),(130,1,'2016-06-02 14:41:00','2016-06-02 14:41:00','','Our Values','','inherit','closed','closed','','128-revision-v1','','','2016-06-02 14:41:00','2016-06-02 14:41:00','',128,'http://vantageprinters.com/vital/128-revision-v1/',0,'revision','',0),(131,1,'2016-06-02 14:41:11','2016-06-02 14:41:11','','Our Capabilities','','inherit','closed','closed','','129-revision-v1','','','2016-06-02 14:41:11','2016-06-02 14:41:11','',129,'http://vantageprinters.com/vital/129-revision-v1/',0,'revision','',0),(132,1,'2016-06-02 14:42:48','2016-06-02 14:42:48','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"    font-size: 80px;  font-weight: 900;    font-family: Roboto;    letter-spacing: 10px;    line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px;\r\n    font-weight: 300;\r\n    font-family: Roboto;\r\n    line-height: 34px;\r\n    width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Helping you build an authentic brand.</em></p>[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Equipping you for the digital age.</em></p>[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center; font-size: 19px; font-weight:300;\"><em>Striving for the wow-factor.</em></p>[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"100px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 class=\"font_4\" style=\"text-transform: uppercase;font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>[/fusion_text][fusion_text]<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-02 14:42:48','2016-06-02 14:42:48','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(133,1,'2016-06-02 14:58:21','2016-06-02 14:58:21','<p class=\"font_7\"><strong>Inquisitive</strong></p>\r\n<p class=\"font_7\">What’s going on outside in the broader world around us is our concern. We always look for new ways, new ideas, new thinking.</p>\r\n<p class=\"font_7\"><strong>Artistry</strong></p>\r\n<p class=\"font_7\">We strive to get the details right and celebrate the art and craft of our job and we try and do this with flair and finesse.</p>\r\n<p class=\"font_7\"><strong>Entrepreneurship</strong></p>\r\n<p class=\"font_7\">We strive to surpass expectations and to take your breath away with our strategy and creative.</p>\r\n<p class=\"font_7\"><strong>Adaptability</strong></p>\r\n<p class=\"font_7\">We aren’t afraid to do things differently and fitting into new is what we like.</p>\r\n<p class=\"font_7\"><strong>Each Other</strong></p>\r\n<p class=\"font_7\">We’re bighearted with our knowledge and like to share it with each other. We enjoy the eclectic bunch of people that we are and celebrate our diversity joyously.</p>\r\n<p class=\"font_7\"><strong>Integrity</strong></p>\r\n<p class=\"font_7\">We believe in being true to our word. Integrity is non-negotiable to us and we always strive to say what we mean and mean what we say.</p>','Our Values','','inherit','closed','closed','','128-revision-v1','','','2016-06-02 14:58:21','2016-06-02 14:58:21','',128,'http://vantageprinters.com/vital/128-revision-v1/',0,'revision','',0),(134,1,'2016-06-02 15:04:36','2016-06-02 15:04:36','','strategy','','inherit','open','closed','','strategy','','','2016-06-02 15:04:36','2016-06-02 15:04:36','',129,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/strategy.png',0,'attachment','image/png',0),(135,1,'2016-06-02 15:14:26','2016-06-02 15:14:26','[fusion_text]<a href=\"#\"><img class=\"aligncenter size-full wp-image-134\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/06/strategy.png\" alt=\"strategy\" width=\"843\" height=\"247\" /></a>[/fusion_text][fusion_text]<h2 class=\"font_7\">Strategy</h2>\r\n<p class=\"font_7\">Creating a winning game plan.</p>\r\n<p class=\"font_7\">Thanks to an extensive industry experience and constant monitoring of trends, we always strive to bring a breadth of knowledge to our clients. Our goal is create a grand design that covers your brand, channel and campaign strategy – helping you out-think and out-perform your competition repeatedly.</p>\r\n\r\n<h2 class=\"font_7\">Creative</h2>\r\n<p class=\"font_7\">Mastering the art of storytelling.</p>\r\n<p class=\"font_7\">Our gifted creative team promotes your brand, inspires your audience and generates response. We build simple and targeted approaches that bring the emotion of storytelling to all our brand campaigns – creating unforgettable user-experiences for all times to come – via:</p>\r\n<p class=\"font_7\">Research | Editing &amp; Proofreading | Creative Concepts | Copywriting</p>\r\n\r\n<h2 class=\"font_7\">Design</h2>\r\n<p class=\"font_7\">Math is easy. Design is hard.</p>\r\n<p class=\"font_7\">The design gurus at Vantage produce content that is visually striking and relevant. They believe in creating thematic concepts which reflect your corporate philosophy with finesse. Over the years, we’ve become champions of launching artworks that not only sell, but win awards both locally and internationally.</p>\r\n<p class=\"font_7\">Since 1992, we’ve won 140 national and 16 international design awards.</p>\r\n\r\n<h2 class=\"font_7\">Imaging</h2>\r\n<p class=\"font_7\">Preparing your content for print and other media – in one go</p>\r\n<p class=\"font_7\">Vantage is one of the first printers in Pakistan to have its very own in-house Computer-to-Plate (CTP) department.</p>\r\n<p class=\"font_7\">Using the industry\'s most advanced prepress technology, our experts swiftly and consistently prepare your files and images in a 100 percent digital PDF-based workflow for the best possible reproduction on press, not to mention other media channels.</p>\r\n<p class=\"font_7\">Tap into Vantage for the following services:</p>\r\n\r\n<ul>\r\n 	<li class=\"font_7\">Scanning, retouching, colour manipulation, vector imaging, special effects and digital page assembly</li>\r\n 	<li class=\"font_7\">Colour management from creative to press</li>\r\n 	<li class=\"font_7\">Soft proofing</li>\r\n 	<li class=\"font_7\">Automated PDF creation, file transfer and conversions</li>\r\n 	<li class=\"font_7\">Asset, workflow, content and rights management</li>\r\n 	<li class=\"font_7\">Advertising resource management</li>\r\n 	<li class=\"font_7\">Digital platemaking</li>\r\n</ul>\r\n<h2 class=\"font_7\">Photography</h2>\r\n<p class=\"font_7\">An eye for detail</p>\r\n<p class=\"font_7\">Our photographers excel at capturing your vision – the desired look and feel of any object, in any setting. Our all-digital workflows, supported by the latest image processing technologies and our colour-management expertise, enable us to capture and perfect images with great speed and accuracy, reducing turnaround time and improving cost efficiencies.</p>[/fusion_text][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth]','Our Capabilities','','inherit','closed','closed','','129-revision-v1','','','2016-06-02 15:14:26','2016-06-02 15:14:26','',129,'http://vantageprinters.com/vital/129-revision-v1/',0,'revision','',0),(136,1,'2016-06-01 15:24:24','2016-06-01 15:24:24','','Consumer Packaging','','publish','open','closed','','consumer-packaging','','','2016-06-05 10:03:58','2016-06-05 10:03:58','',0,'http://vantageprinters.com/vital/?post_type=avada_portfolio&#038;p=136',0,'avada_portfolio','',0),(142,1,'2016-06-01 15:24:39','2016-06-01 15:24:39','','Corporate Giveaways','','publish','open','closed','','corporate-giveaways','','','2016-06-05 10:03:46','2016-06-05 10:03:46','',0,'http://vantageprinters.com/vital/?post_type=avada_portfolio&#038;p=142',0,'avada_portfolio','',0),(143,1,'2016-06-02 15:23:48','2016-06-02 15:23:48','','Agriculture','','inherit','open','closed','','agriculture','','','2016-06-02 15:23:48','2016-06-02 15:23:48','',136,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Agriculture.jpg',0,'attachment','image/jpeg',0),(144,1,'2016-06-02 15:23:55','2016-06-02 15:23:55','','Construction','','inherit','open','closed','','construction','','','2016-06-02 15:23:55','2016-06-02 15:23:55','',136,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Construction.jpg',0,'attachment','image/jpeg',0),(145,1,'2016-06-02 15:23:58','2016-06-02 15:23:58','','Consumer Packaging','','inherit','open','closed','','consumer-packaging','','','2016-06-02 15:23:58','2016-06-02 15:23:58','',136,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Consumer-Packaging.jpg',0,'attachment','image/jpeg',0),(146,1,'2016-06-02 15:24:02','2016-06-02 15:24:02','','Corporate Giveaways','','inherit','open','closed','','corporate-giveaways','','','2016-06-02 15:24:02','2016-06-02 15:24:02','',136,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Corporate-Giveaways.jpg',0,'attachment','image/jpeg',0),(147,1,'2016-06-02 15:24:05','2016-06-02 15:24:05','','Financial Services','','inherit','open','closed','','financial-services','','','2016-06-02 15:24:05','2016-06-02 15:24:05','',136,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Financial-Services.jpg',0,'attachment','image/jpeg',0),(148,1,'2016-06-02 15:24:08','2016-06-02 15:24:08','','Retail','','inherit','open','closed','','retail','','','2016-06-02 15:24:08','2016-06-02 15:24:08','',136,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Retail.jpg',0,'attachment','image/jpeg',0),(153,1,'2016-06-02 15:24:24','2016-06-02 15:24:24','','Consumer Packaging','','inherit','closed','closed','','136-revision-v1','','','2016-06-02 15:24:24','2016-06-02 15:24:24','',136,'http://vantageprinters.com/vital/136-revision-v1/',0,'revision','',0),(154,1,'2016-06-02 15:24:39','2016-06-02 15:24:39','','Corporate Giveaways','','inherit','closed','closed','','142-revision-v1','','','2016-06-02 15:24:39','2016-06-02 15:24:39','',142,'http://vantageprinters.com/vital/142-revision-v1/',0,'revision','',0),(158,1,'2016-06-01 15:25:50','2016-06-01 15:25:50','','Construction','','publish','open','closed','','construction','','','2016-06-05 10:03:29','2016-06-05 10:03:29','',0,'http://vantageprinters.com/vital/?post_type=avada_portfolio&#038;p=158',0,'avada_portfolio','',0),(160,1,'2016-06-01 15:26:21','2016-06-01 15:26:21','','Retail','','publish','open','closed','','retail','','','2016-06-05 10:03:32','2016-06-05 10:03:32','',0,'http://vantageprinters.com/vital/?post_type=avada_portfolio&#038;p=160',0,'avada_portfolio','',0),(161,1,'2016-06-01 15:27:36','2016-06-01 15:27:36','','Agriculture','','publish','open','closed','','agriculture','','','2016-06-05 10:03:06','2016-06-05 10:03:06','',0,'http://vantageprinters.com/vital/?post_type=avada_portfolio&#038;p=161',0,'avada_portfolio','',0),(163,1,'2016-06-02 15:25:50','2016-06-02 15:25:50','','Construction','','inherit','closed','closed','','158-revision-v1','','','2016-06-02 15:25:50','2016-06-02 15:25:50','',158,'http://vantageprinters.com/vital/158-revision-v1/',0,'revision','',0),(164,1,'2016-06-01 15:27:48','2016-06-01 15:27:48','','Financial Services','','publish','open','closed','','financial-services','','','2016-06-05 10:03:05','2016-06-05 10:03:05','',0,'http://vantageprinters.com/vital/?post_type=avada_portfolio&#038;p=164',0,'avada_portfolio','',0),(165,1,'2016-06-02 15:26:21','2016-06-02 15:26:21','','Retail','','inherit','closed','closed','','160-revision-v1','','','2016-06-02 15:26:21','2016-06-02 15:26:21','',160,'http://vantageprinters.com/vital/160-revision-v1/',0,'revision','',0),(166,1,'2016-06-02 15:27:36','2016-06-02 15:27:36','','Agriculture','','inherit','closed','closed','','161-revision-v1','','','2016-06-02 15:27:36','2016-06-02 15:27:36','',161,'http://vantageprinters.com/vital/161-revision-v1/',0,'revision','',0),(167,1,'2016-06-02 15:27:48','2016-06-02 15:27:48','','Financial Services','','inherit','closed','closed','','164-revision-v1','','','2016-06-02 15:27:48','2016-06-02 15:27:48','',164,'http://vantageprinters.com/vital/164-revision-v1/',0,'revision','',0),(168,1,'2016-06-24 11:20:52','2016-06-24 11:20:52','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 class=\"font_4\" style=\"font-size: 65px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>\n[/fusion_text][fusion_text]\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<a href=\"http://vantageprinters.com/vital/branding/\"><span style=\"font-family: Roboto;\">BRANDING</span></a>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Helping you build an authentic brand.</em></p>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<a href=\"http://vantageprinters.com/vital/digital/\"><span style=\"font-family: Roboto;\">DIGITAL</span></a>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Equipping you for the digital age.</em></p>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<a href=\"http://vantageprinters.com/vital/print/\"><span style=\"font-family: Roboto;\">PRINT</span></a>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Striving for the wow-factor.</em></p>\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItdmFsdWVzIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItY2FwYWJpbGl0aWVzLyI+T1VSIENBUEFCSUxJVElFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\n[/title][fusion_text]\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\n[/title][fusion_text]\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 class=\"font_4\" style=\"text-transform: uppercase; font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>\n[/fusion_text][fusion_text]\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/career.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]<a href=\"https://www.fb.com/vantagepakistan\" target=\"_blank\">VantagePakistan</a>[/li_item][li_item icon=\"fa-linkedin\"]<a href=\"https://www.linkedin.com/company/vantage-printers\" target=\"_blank\">vantage-printers</a>[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-autosave-v1','','','2016-06-24 11:20:52','2016-06-24 11:20:52','',4,'http://vantageprinters.com/vital/4-autosave-v1/',0,'revision','',0),(169,1,'2016-06-05 09:43:15','2016-06-05 09:43:15','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Helping you build an authentic brand.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Equipping you for the digital age.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Striving for the wow-factor.</em></p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSIjIj5PVVIgQ0FQQUJJTElUSUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"text-transform: uppercase; font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>\r\n[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" alt=\"\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-05 09:43:15','2016-06-05 09:43:15','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(170,1,'2016-06-05 09:44:29','2016-06-05 09:44:29','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Helping you build an authentic brand.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Equipping you for the digital age.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Striving for the wow-factor.</em></p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItdmFsdWVzIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItY2FwYWJpbGl0aWVzLyI+T1VSIENBUEFCSUxJVElFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"text-transform: uppercase; font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>\r\n[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" alt=\"\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-05 09:44:29','2016-06-05 09:44:29','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(171,1,'2016-06-05 09:45:47','2016-06-05 09:45:47','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Helping you build an authentic brand.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Equipping you for the digital age.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Striving for the wow-factor.</em></p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItdmFsdWVzIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItY2FwYWJpbGl0aWVzLyI+T1VSIENBUEFCSUxJVElFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"text-transform: uppercase; font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>\r\n[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" alt=\"\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-05 09:45:47','2016-06-05 09:45:47','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(172,1,'2016-06-05 09:48:58','2016-06-05 09:48:58','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Helping you build an authentic brand.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Equipping you for the digital age.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Striving for the wow-factor.</em></p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItdmFsdWVzIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItY2FwYWJpbGl0aWVzLyI+T1VSIENBUEFCSUxJVElFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"text-transform: uppercase; font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>\r\n[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" alt=\"\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-05 09:48:58','2016-06-05 09:48:58','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(173,1,'2016-06-05 09:51:48','2016-06-05 09:51:48','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Helping you build an authentic brand.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Equipping you for the digital age.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Striving for the wow-factor.</em></p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItdmFsdWVzIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItY2FwYWJpbGl0aWVzLyI+T1VSIENBUEFCSUxJVElFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"text-transform: uppercase; font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>\r\n[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" alt=\"\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-05 09:51:48','2016-06-05 09:51:48','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(174,1,'2016-06-05 10:01:55','2016-06-05 10:01:55','','Agriculture','','inherit','open','closed','','agriculture-2','','','2016-06-05 10:01:55','2016-06-05 10:01:55','',0,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Agriculture-1.jpg',0,'attachment','image/jpeg',0),(175,1,'2016-06-05 10:01:57','2016-06-05 10:01:57','','Construction','','inherit','open','closed','','construction-2','','','2016-06-05 10:01:57','2016-06-05 10:01:57','',0,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Construction-1.jpg',0,'attachment','image/jpeg',0),(176,1,'2016-06-05 10:02:00','2016-06-05 10:02:00','','Consumer-Packaging','','inherit','open','closed','','consumer-packaging-2','','','2016-06-05 10:02:00','2016-06-05 10:02:00','',0,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Consumer-Packaging-1.jpg',0,'attachment','image/jpeg',0),(177,1,'2016-06-05 10:02:03','2016-06-05 10:02:03','','Corporate-Giveaways','','inherit','open','closed','','corporate-giveaways-2','','','2016-06-05 10:02:03','2016-06-05 10:02:03','',0,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Corporate-Giveaways-1.jpg',0,'attachment','image/jpeg',0),(178,1,'2016-06-05 10:02:07','2016-06-05 10:02:07','','Retail','','inherit','open','closed','','retail-2','','','2016-06-05 10:02:07','2016-06-05 10:02:07','',0,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Retail-1.jpg',0,'attachment','image/jpeg',0),(179,1,'2016-06-05 10:02:10','2016-06-05 10:02:10','','Financial-Services','','inherit','open','closed','','financial-services-2','','','2016-06-05 10:02:10','2016-06-05 10:02:10','',0,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/Financial-Services-1.jpg',0,'attachment','image/jpeg',0),(181,1,'2016-06-12 12:35:06','2016-06-12 12:35:06','','v-logo','','inherit','open','closed','','v-logo','','','2016-06-12 12:35:06','2016-06-12 12:35:06','',0,'http://vantageprinters.com/vital/wp-content/uploads/2016/06/v-logo.png',0,'attachment','image/png',0),(182,1,'2016-06-12 12:40:32','2016-06-12 12:40:32','[one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][video width=\"1280\" height=\"720\" mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\"][/video][/fusion_text][/one_half][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth]','Video','','publish','closed','closed','','video','','','2016-06-12 12:46:26','2016-06-12 12:46:26','',0,'http://vantageprinters.com/vital/?page_id=182',0,'page','',0),(183,1,'2016-06-12 12:40:32','2016-06-12 12:40:32','[video width=\"1280\" height=\"720\" mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\"][/video]','Video','','inherit','closed','closed','','182-revision-v1','','','2016-06-12 12:40:32','2016-06-12 12:40:32','',182,'http://vantageprinters.com/vital/182-revision-v1/',0,'revision','',0),(184,1,'2016-06-12 12:40:37','2016-06-12 12:40:37','[video width=\"1280\" height=\"720\" mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\"][/video]','Video','','inherit','closed','closed','','182-autosave-v1','','','2016-06-12 12:40:37','2016-06-12 12:40:37','',182,'http://vantageprinters.com/vital/182-autosave-v1/',0,'revision','',0),(185,1,'2016-06-12 12:40:51','2016-06-12 12:40:51','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 65px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Helping you build an authentic brand.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Equipping you for the digital age.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Striving for the wow-factor.</em></p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItdmFsdWVzIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItY2FwYWJpbGl0aWVzLyI+T1VSIENBUEFCSUxJVElFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"text-transform: uppercase; font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>\r\n[/fusion_text][/one_half][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"pink\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"][/button][/one_sixth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" alt=\"\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-12 12:40:51','2016-06-12 12:40:51','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(186,1,'2016-06-12 12:44:14','2016-06-12 12:44:14','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 65px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Helping you build an authentic brand.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Equipping you for the digital age.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Striving for the wow-factor.</em></p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItdmFsdWVzIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItY2FwYWJpbGl0aWVzLyI+T1VSIENBUEFCSUxJVElFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"text-transform: uppercase; font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]VantagePakistan[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-12 12:44:14','2016-06-12 12:44:14','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(187,1,'2016-06-12 12:46:26','2016-06-12 12:46:26','[one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][video width=\"1280\" height=\"720\" mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\"][/video][/fusion_text][/one_half][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth]','Video','','inherit','closed','closed','','182-revision-v1','','','2016-06-12 12:46:26','2016-06-12 12:46:26','',182,'http://vantageprinters.com/vital/182-revision-v1/',0,'revision','',0),(188,1,'2016-06-12 12:48:59','2016-06-12 12:48:59','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 65px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Helping you build an authentic brand.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Equipping you for the digital age.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Striving for the wow-factor.</em></p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItdmFsdWVzIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItY2FwYWJpbGl0aWVzLyI+T1VSIENBUEFCSUxJVElFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"text-transform: uppercase; font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]<a href=\"https://www.fb.com/vantagepakistan\">VantagePakistan</a>[/li_item][li_item icon=\"fa-linkedin\"]vantage-printers[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-12 12:48:59','2016-06-12 12:48:59','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(189,1,'2016-06-12 12:52:13','2016-06-12 12:52:13','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 65px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Helping you build an authentic brand.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Equipping you for the digital age.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Striving for the wow-factor.</em></p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItdmFsdWVzIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItY2FwYWJpbGl0aWVzLyI+T1VSIENBUEFCSUxJVElFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"text-transform: uppercase; font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\"  stretch=\"\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]<a href=\"https://www.fb.com/vantagepakistan\" target=\"_blank\">VantagePakistan</a>[/li_item][li_item icon=\"fa-linkedin\"]<a href=\"https://www.linkedin.com/company/vantage-printers\" target=\"_blank\">vantage-printers</a>[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\"  stretch=\"yes\"  type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-12 12:52:13','2016-06-12 12:52:13','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(191,1,'2016-06-24 11:02:13','2016-06-24 11:02:13','','career','','inherit','open','closed','','career','','','2016-06-24 11:02:13','2016-06-24 11:02:13','',4,'http://vantageprinters.com/vital/wp-content/uploads/2016/05/career.jpg',0,'attachment','image/jpeg',0),(192,1,'2016-06-24 11:03:12','2016-06-24 11:03:12','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 65px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">BRANDING</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Helping you build an authentic brand.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">DIGITAL</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Equipping you for the digital age.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<span style=\"font-family: Roboto;\">PRINT</span>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Striving for the wow-factor.</em></p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItdmFsdWVzIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItY2FwYWJpbGl0aWVzLyI+T1VSIENBUEFCSUxJVElFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"text-transform: uppercase; font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/career.jpg\" alt=\"\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]<a href=\"https://www.fb.com/vantagepakistan\" target=\"_blank\">VantagePakistan</a>[/li_item][li_item icon=\"fa-linkedin\"]<a href=\"https://www.linkedin.com/company/vantage-printers\" target=\"_blank\">vantage-printers</a>[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" alt=\"\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-24 11:03:12','2016-06-24 11:03:12','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(193,1,'2016-06-24 11:07:58','2016-06-24 11:07:58','[fusion_text]<h2 style=\"text-align: center; text-transform: uppercase;\">To brand or not to brand is not even a question.</h2>[/fusion_text][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Vantage has over 20 years’ experience of launching, building, refreshing and invigorating brands.</h1>\r\n<a class=\"back-to-btn\" href=\"http://vantageprinters.com/vital/#services\">back to services</a>[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3>In the plethora of today’s media, it has become increasingly important to create a well-defined visual identity that reflects the culture and philosophy of your business.</h3>\r\n<h3>Research shows that 85% of all our decisions, as consumers, are controlled by the subconscious mind. Which is why, at Vantage, we like to create brands that connect with our audiences in the most relevant fashion. Our brand mantra is simple, yet profound – to tell a compelling story of what makes you, you – by employing a million little gestures that are bite-size in measure, but monstrous in impact.</h3>\r\n[/fusion_text][/one_half][/fullwidth]','Branding','','publish','closed','closed','','branding','','','2016-06-24 11:16:16','2016-06-24 11:16:16','',0,'http://vantageprinters.com/vital/?page_id=193',0,'page','',0),(194,1,'2016-06-24 11:10:11','2016-06-24 11:10:11','[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h2 class=\"font_7\" style=\"text-align: center; text-transform: uppercase;\">Making lasting impressions across</h2>\r\n<h2 class=\"font_7\" style=\"text-align: center; text-transform: uppercase;\">all channels and touch-points.</h2>\r\n<h3 style=\"text-align: center;\">To us, digital is not a mere afterthought, but a ground-breaking reality that has already taken the world by storm.</h3>\r\n</div>\r\n<div id=\"comp-ilvwcksj2\" class=\"s1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$qpv1t.1.$comp-ilvwcksj2\">\r\n<p class=\"font_7\" style=\"text-align: center;\">Today, the first interaction of consumers with a brand is often digital. One-third of all the web traffic comes from smartphones and tablets, while over 70% of internet users are most likely to purchase from a brand that they are following on a social networking site.</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">At Vantage, we believe in crafting cohesive customer journeys across a palette of new platforms. These emerging touchstones will become the cornerstones of your brand presence in the future – creating an image that is creatively and commercially more viable for your business in the long-run.</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">Which is why, we believe in providing you with extended reach, access and communication – anywhere and everywhere.</p>\r\n\r\n<a class=\"back-to-btn\" href=\"http://vantageprinters.com/vital/#services\">back to services</a>[/fusion_text][/fullwidth]','Digital','','publish','closed','closed','','digital','','','2016-06-24 11:18:41','2016-06-24 11:18:41','',0,'http://vantageprinters.com/vital/?page_id=194',0,'page','',0),(195,1,'2016-06-24 11:13:21','2016-06-24 11:13:21','<h2 style=\"text-align: center; text-transform: uppercase\">Weaving a little print magic.</h2>\r\nAs print connoisseurs, we have a penchant for delivering only the best. While the technology and application of the printed world has evolved with time, research shows that it is still a powerful marketing tool like no other.\r\n\r\nSeason after season, we produce some of the largest, most unconventional print collaterals that make the toughest, most demanding print guys gasp in awe.\r\n\r\nOur production facility boasts of seven state-of-the-art Heidelberg presses that are capable of producing short runs to runs in millions – assembling a spectrum of stunning works, including niche catalogs, brochures, corporate annual reports, direct mail pieces along with customised inserts, covers, orders and bind-in cards.\r\n<h3 class=\"font_7\" style=\"text-align: right;\">“Even today, customers appreciate getting a nice postcard, well-designed catalog, or personal thank you note in the mail today.”</h3>\r\n<h3 class=\"font_7\" style=\"text-align: right;\">– Print is Big</h3>\r\n<p class=\"font_7\" style=\"text-align: center;\">From specialised inks to UV printing</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">From metallized substrates to plastic printing</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">From ground-breaking coatings to dazzling effects</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">From systematic binding to meticulous finishing</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">From efficient mailing to effective fulfilment</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">We do it all.</p>\r\n\r\n<div id=\"comp-ilw0d3yf\" class=\"s1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yf\">\r\n<h1 class=\"font_2\" style=\"text-align: center;\">PACKAGING</h1>\r\n</div>\r\n<div id=\"comp-ilw0d3yl\" class=\"s29\" data-align=\"center\" data-disabled=\"false\" data-margin=\"0\" data-state=\"desktop \" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yl\" data-prev-text=\"Seeing things from the other side of the shelf. \" data-prev-min-width=\"819\" data-prev-width=\"849\">\r\n<h2 id=\"comp-ilw0d3yllink\" class=\"s29link\" style=\"text-align: center;\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yl.0\"><span id=\"comp-ilw0d3yllabel\" class=\"s29label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yl.0.0\">Seeing things from the other side of the shelf.</span></h2>\r\n</div>\r\n<div id=\"comp-ilw0d3yl1\" class=\"s1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yl1\">\r\n<p class=\"font_7\" style=\"text-align: center;\">Research shows that 70% of all purchasing decisions are made on the shelf, add to that the fact that packaging on a supermarket shelf has less than 3 precious seconds to grab the attention of the consumer – making it so easy to become a wallflower in next to no time.</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">At Vantage, we not only understand this phenomenon, but endorse it. Our packaging solutions thrive on our ability to create high-quality, powerful designs that will play a vital role in your product’s success.</p>\r\n\r\n</div>\r\n<h3 class=\"font_7\" style=\"text-align: right;\">“We don\'t need less packaging.</h3>\r\n<h3 class=\"font_7\" style=\"text-align: right;\">We need more packaging.”</h3>\r\n<h3 class=\"font_7\" style=\"text-align: right;\">– Lars Wallentin</h3>\r\n\r\n<a class=\"back-to-btn\" href=\"http://vantageprinters.com/vital/#services\">back to services</a>','Print','','publish','closed','closed','','print','','','2016-06-24 11:16:04','2016-06-24 11:16:04','',0,'http://vantageprinters.com/vital/?page_id=195',0,'page','',0),(196,1,'2016-06-24 11:07:58','2016-06-24 11:07:58','[fusion_text]\r\n<h1 class=\"font_2\" style=\"text-align: center;\">BRANDING</h1>\r\n<h2 style=\"text-align: center; text-transform: uppercase;\">To brand or not to brand is not even a question.</h2>\r\n[/fusion_text][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Vantage has over 20 years’ experience of launching, building, refreshing and invigorating brands.</h1>\r\n<a class=\"back-to-btn\" href=\"http://vantageprinters.com/vital/#services\">back to services</a>[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3>In the plethora of today’s media, it has become increasingly important to create a well-defined visual identity that reflects the culture and philosophy of your business.</h3>\r\n<h3>Research shows that 85% of all our decisions, as consumers, are controlled by the subconscious mind. Which is why, at Vantage, we like to create brands that connect with our audiences in the most relevant fashion. Our brand mantra is simple, yet profound – to tell a compelling story of what makes you, you – by employing a million little gestures that are bite-size in measure, but monstrous in impact.</h3>\r\n[/fusion_text][/one_half][/fullwidth]','Branding','','inherit','closed','closed','','193-revision-v1','','','2016-06-24 11:07:58','2016-06-24 11:07:58','',193,'http://vantageprinters.com/vital/193-revision-v1/',0,'revision','',0),(197,1,'2016-06-24 11:10:11','2016-06-24 11:10:11','[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<div id=\"comp-ilvwcksj\" class=\"s1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$qpv1t.1.$comp-ilvwcksj\">\r\n<h1 class=\"font_2\" style=\"text-align: center;\">DIGITAL</h1>\r\n<h2 class=\"font_7\" style=\"text-align: center;\">Making lasting impressions across</h2>\r\n<h2 class=\"font_7\" style=\"text-align: center;\">all channels and touch-points.</h2>\r\n<h3 style=\"text-align: center;\">To us, digital is not a mere afterthought, but a ground-breaking reality that has already taken the world by storm.</h3>\r\n</div>\r\n<div id=\"comp-ilvwcksj2\" class=\"s1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$qpv1t.1.$comp-ilvwcksj2\">\r\n<p class=\"font_7\" style=\"text-align: center;\">Today, the first interaction of consumers with a brand is often digital. One-third of all the web traffic comes from smartphones and tablets, while over 70% of internet users are most likely to purchase from a brand that they are following on a social networking site.</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">At Vantage, we believe in crafting cohesive customer journeys across a palette of new platforms. These emerging touchstones will become the cornerstones of your brand presence in the future – creating an image that is creatively and commercially more viable for your business in the long-run.</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">Which is why, we believe in providing you with extended reach, access and communication – anywhere and everywhere.</p>\r\n\r\n</div>\r\n<div id=\"comp-ilvwmhg2\" class=\"s1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$qpv1t.1.$comp-ilvwmhg2\"></div>\r\n<a class=\"back-to-btn\" href=\"http://vantageprinters.com/vital/#services\">back to services</a>[/fusion_text][/fullwidth]','Digital','','inherit','closed','closed','','194-revision-v1','','','2016-06-24 11:10:11','2016-06-24 11:10:11','',194,'http://vantageprinters.com/vital/194-revision-v1/',0,'revision','',0),(198,1,'2016-06-24 11:10:58','2016-06-24 11:10:58','[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<div>\r\n<h1 class=\"font_2\" style=\"text-align: center;\">DIGITAL</h1>\r\n<h2 class=\"font_7\" style=\"text-align: center; text-transform: uppercase;\">Making lasting impressions across</h2>\r\n<h2 class=\"font_7\" style=\"text-align: center; text-transform: uppercase;\">all channels and touch-points.</h2>\r\n<h3 style=\"text-align: center;\">To us, digital is not a mere afterthought, but a ground-breaking reality that has already taken the world by storm.</h3>\r\n</div>\r\n<div id=\"comp-ilvwcksj2\" class=\"s1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$qpv1t.1.$comp-ilvwcksj2\">\r\n<p class=\"font_7\" style=\"text-align: center;\">Today, the first interaction of consumers with a brand is often digital. One-third of all the web traffic comes from smartphones and tablets, while over 70% of internet users are most likely to purchase from a brand that they are following on a social networking site.</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">At Vantage, we believe in crafting cohesive customer journeys across a palette of new platforms. These emerging touchstones will become the cornerstones of your brand presence in the future – creating an image that is creatively and commercially more viable for your business in the long-run.</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">Which is why, we believe in providing you with extended reach, access and communication – anywhere and everywhere.</p>\r\n\r\n</div>\r\n<div id=\"comp-ilvwmhg2\" class=\"s1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$qpv1t.1.$comp-ilvwmhg2\"></div>\r\n<a class=\"back-to-btn\" href=\"http://vantageprinters.com/vital/#services\">back to services</a>[/fusion_text][/fullwidth]','Digital','','inherit','closed','closed','','194-revision-v1','','','2016-06-24 11:10:58','2016-06-24 11:10:58','',194,'http://vantageprinters.com/vital/194-revision-v1/',0,'revision','',0),(199,1,'2016-06-24 11:13:21','2016-06-24 11:13:21','<h1 style=\"text-align: center;\">print</h1>\r\n<h2 style=\"text-align: center;\">Weaving a little print magic.</h2>\r\nAs print connoisseurs, we have a penchant for delivering only the best. While the technology and application of the printed world has evolved with time, research shows that it is still a powerful marketing tool like no other.\r\n\r\nSeason after season, we produce some of the largest, most unconventional print collaterals that make the toughest, most demanding print guys gasp in awe.\r\n\r\nOur production facility boasts of seven state-of-the-art Heidelberg presses that are capable of producing short runs to runs in millions – assembling a spectrum of stunning works, including niche catalogs, brochures, corporate annual reports, direct mail pieces along with customised inserts, covers, orders and bind-in cards.\r\n<h3 class=\"font_7\" style=\"text-align: right;\">“Even today, customers appreciate getting a nice postcard, well-designed catalog, or personal thank you note in the mail today.”</h3>\r\n<h3 class=\"font_7\" style=\"text-align: right;\">– Print is Big</h3>\r\n<p class=\"font_7\" style=\"text-align: center;\">From specialised inks to UV printing</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">From metallized substrates to plastic printing</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">From ground-breaking coatings to dazzling effects</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">From systematic binding to meticulous finishing</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">From efficient mailing to effective fulfilment</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">We do it all.</p>\r\n\r\n<div id=\"comp-ilw0d3yf\" class=\"s1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yf\">\r\n<h1 class=\"font_2\" style=\"text-align: center;\">PACKAGING</h1>\r\n</div>\r\n<div id=\"comp-ilw0d3yl\" class=\"s29\" data-align=\"center\" data-disabled=\"false\" data-margin=\"0\" data-state=\"desktop \" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yl\" data-prev-text=\"Seeing things from the other side of the shelf. \" data-prev-min-width=\"819\" data-prev-width=\"849\">\r\n<h2 id=\"comp-ilw0d3yllink\" class=\"s29link\" style=\"text-align: center;\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yl.0\"><span id=\"comp-ilw0d3yllabel\" class=\"s29label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yl.0.0\">Seeing things from the other side of the shelf.</span></h2>\r\n</div>\r\n<div id=\"comp-ilw0d3yl1\" class=\"s1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yl1\">\r\n<p class=\"font_7\" style=\"text-align: center;\">Research shows that 70% of all purchasing decisions are made on the shelf, add to that the fact that packaging on a supermarket shelf has less than 3 precious seconds to grab the attention of the consumer – making it so easy to become a wallflower in next to no time.</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">At Vantage, we not only understand this phenomenon, but endorse it. Our packaging solutions thrive on our ability to create high-quality, powerful designs that will play a vital role in your product’s success.</p>\r\n\r\n</div>\r\n<h3 class=\"font_7\" style=\"text-align: right;\">“We don\'t need less packaging.</h3>\r\n<h3 class=\"font_7\" style=\"text-align: right;\">We need more packaging.”</h3>\r\n<h3 class=\"font_7\" style=\"text-align: right;\">– Lars Wallentin</h3>\r\n\r\n<a class=\"back-to-btn\" href=\"http://vantageprinters.com/vital/#services\">back to services</a>','Print','','inherit','closed','closed','','195-revision-v1','','','2016-06-24 11:13:21','2016-06-24 11:13:21','',195,'http://vantageprinters.com/vital/195-revision-v1/',0,'revision','',0),(200,1,'2016-06-24 11:16:04','2016-06-24 11:16:04','<h2 style=\"text-align: center; text-transform: uppercase\">Weaving a little print magic.</h2>\r\nAs print connoisseurs, we have a penchant for delivering only the best. While the technology and application of the printed world has evolved with time, research shows that it is still a powerful marketing tool like no other.\r\n\r\nSeason after season, we produce some of the largest, most unconventional print collaterals that make the toughest, most demanding print guys gasp in awe.\r\n\r\nOur production facility boasts of seven state-of-the-art Heidelberg presses that are capable of producing short runs to runs in millions – assembling a spectrum of stunning works, including niche catalogs, brochures, corporate annual reports, direct mail pieces along with customised inserts, covers, orders and bind-in cards.\r\n<h3 class=\"font_7\" style=\"text-align: right;\">“Even today, customers appreciate getting a nice postcard, well-designed catalog, or personal thank you note in the mail today.”</h3>\r\n<h3 class=\"font_7\" style=\"text-align: right;\">– Print is Big</h3>\r\n<p class=\"font_7\" style=\"text-align: center;\">From specialised inks to UV printing</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">From metallized substrates to plastic printing</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">From ground-breaking coatings to dazzling effects</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">From systematic binding to meticulous finishing</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">From efficient mailing to effective fulfilment</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">We do it all.</p>\r\n\r\n<div id=\"comp-ilw0d3yf\" class=\"s1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yf\">\r\n<h1 class=\"font_2\" style=\"text-align: center;\">PACKAGING</h1>\r\n</div>\r\n<div id=\"comp-ilw0d3yl\" class=\"s29\" data-align=\"center\" data-disabled=\"false\" data-margin=\"0\" data-state=\"desktop \" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yl\" data-prev-text=\"Seeing things from the other side of the shelf. \" data-prev-min-width=\"819\" data-prev-width=\"849\">\r\n<h2 id=\"comp-ilw0d3yllink\" class=\"s29link\" style=\"text-align: center;\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yl.0\"><span id=\"comp-ilw0d3yllabel\" class=\"s29label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yl.0.0\">Seeing things from the other side of the shelf.</span></h2>\r\n</div>\r\n<div id=\"comp-ilw0d3yl1\" class=\"s1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$duejf.1.$comp-ilw0d3yl1\">\r\n<p class=\"font_7\" style=\"text-align: center;\">Research shows that 70% of all purchasing decisions are made on the shelf, add to that the fact that packaging on a supermarket shelf has less than 3 precious seconds to grab the attention of the consumer – making it so easy to become a wallflower in next to no time.</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">At Vantage, we not only understand this phenomenon, but endorse it. Our packaging solutions thrive on our ability to create high-quality, powerful designs that will play a vital role in your product’s success.</p>\r\n\r\n</div>\r\n<h3 class=\"font_7\" style=\"text-align: right;\">“We don\'t need less packaging.</h3>\r\n<h3 class=\"font_7\" style=\"text-align: right;\">We need more packaging.”</h3>\r\n<h3 class=\"font_7\" style=\"text-align: right;\">– Lars Wallentin</h3>\r\n\r\n<a class=\"back-to-btn\" href=\"http://vantageprinters.com/vital/#services\">back to services</a>','Print','','inherit','closed','closed','','195-revision-v1','','','2016-06-24 11:16:04','2016-06-24 11:16:04','',195,'http://vantageprinters.com/vital/195-revision-v1/',0,'revision','',0),(201,1,'2016-06-24 11:16:16','2016-06-24 11:16:16','[fusion_text]<h2 style=\"text-align: center; text-transform: uppercase;\">To brand or not to brand is not even a question.</h2>[/fusion_text][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Vantage has over 20 years’ experience of launching, building, refreshing and invigorating brands.</h1>\r\n<a class=\"back-to-btn\" href=\"http://vantageprinters.com/vital/#services\">back to services</a>[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3>In the plethora of today’s media, it has become increasingly important to create a well-defined visual identity that reflects the culture and philosophy of your business.</h3>\r\n<h3>Research shows that 85% of all our decisions, as consumers, are controlled by the subconscious mind. Which is why, at Vantage, we like to create brands that connect with our audiences in the most relevant fashion. Our brand mantra is simple, yet profound – to tell a compelling story of what makes you, you – by employing a million little gestures that are bite-size in measure, but monstrous in impact.</h3>\r\n[/fusion_text][/one_half][/fullwidth]','Branding','','inherit','closed','closed','','193-revision-v1','','','2016-06-24 11:16:16','2016-06-24 11:16:16','',193,'http://vantageprinters.com/vital/193-revision-v1/',0,'revision','',0),(202,1,'2016-06-24 11:18:15','2016-06-24 11:18:15','[menu_anchor name=\"home\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"350px\" padding_bottom=\"350px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 65px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">GETTING CLIENTS TO THE FUTURE FIRST</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We design brand campaigns,\r\ndigital platforms and print collaterals that engage tomorrow’s consumer, today.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"250px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"services\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]SERVICES[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"#ebba4d\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<a href=\"http://vantageprinters.com/vital/branding/\"><span style=\"font-family: Roboto;\">BRANDING</span></a>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Helping you build an authentic brand.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<a href=\"http://vantageprinters.com/vital/digital/\"><span style=\"font-family: Roboto;\">DIGITAL</span></a>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Equipping you for the digital age.</em></p>\r\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]<a href=\"http://vantageprinters.com/vital/print/\"><span style=\"font-family: Roboto;\">PRINT</span></a>[/title][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"15px\" sep_color=\"#ebba4d\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: center; font-size: 19px; font-weight: 300;\"><em>Striving for the wow-factor.</em></p>\r\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"about\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]WHO WE ARE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/02.jpg\" alt=\"\" />[/imageframe][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItdmFsdWVzIj5PVVIgVkFMVUVTPC9hPjwvYj4=[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"15px\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]PGIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7dGV4dC1hbGlnbjpjZW50ZXI7Zm9udC1zaXplOjIwcHg7Ij48YSBocmVmPSJodHRwOi8vdmFudGFnZXByaW50ZXJzLmNvbS9vdXItY2FwYWJpbGl0aWVzLyI+T1VSIENBUEFCSUxJVElFUzwvYT48L2I+[/fusion_code][separator style_type=\"single\" top_margin=\"15px\" bottom_margin=\"15px\" sep_color=\"#2b6ca3\" border_size=\"3px\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"25px\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/option1.gif\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"work\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR WORK\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Letting our work speak for itself.</h3>\r\n[/fusion_text][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"0\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" offset=\"\" excerpt_length=\"0\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"zoom\" animation_direction=\"up\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]OUR CLIENTS\r\n[/title][fusion_text]\r\n<h3 style=\"text-align: center;\">Creating winning partnerships</h3>\r\n[/fusion_text][/fullwidth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]We’re honoured to have worked with some of the best in Pakistan over the years, helping them uncover the power of their brand as a true force. From Pakistan’s top universities to B2B clients, from public sector monopolies to consumer-focused enterprises, we partner with organisations of all sizes. With some, we\'ve been partners for over two decades. The longevity of our relationships is built on trust, respect, and the impact of what we accomplish together.[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients1.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/clients2.png\" alt=\"\" />[/imageframe][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][fullwidth background_color=\"#000000\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/file.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#000000\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"culture\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\".grey\" id=\"\"]OUR CULTURE[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"zoom\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 class=\"font_4\" style=\"text-transform: uppercase; font-size: 80px; font-weight: 900; font-family: Roboto; letter-spacing: 10px; line-height: 70px;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a team of thinkers and makers.</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h1 class=\"font_4\" style=\"font-size: 28px; font-weight: 300; font-family: Roboto; line-height: 34px; width: 90%;\"><span class=\"color_11\" style=\"color: #ffffff;\">We are a finely tuned, rich mix of styles, experiences and skills within Vantage – strategists, designers, technologists, writers, conversation-starters and storytellers, project managers, art-workers, information architects, print managers, lead generators – but we  don’t believe in silos and think things are better when you blur the borders.</span></h1>\r\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"http://vantageprinters.com/vital/video/\" color=\"default\" size=\"medium\" stretch=\"\" type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"fa-chevron-right\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"video-btn\" id=\"\"][/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"150px\" padding_bottom=\"30px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"careers\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"100px\" class=\"\" id=\"\"]CAREERS[/title][one_half last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Join our team.[/title][fusion_text]\r\n<p class=\"font_7\">Since we opened for business in 1992, we have changed the way Pakistan sees branding: from just another word for “logo” to the formation of a well-integrated corporate identity, we have brought the essence of a business strategy to life and nudged it close to a consumers’ heart.</p>\r\n<p class=\"font_7\">Publisher of highly influential Pakistani brands, Vantage was founded by Adnan Bashir, a creative entrepreneur, at a time when the design landscape was yet to be shaped. Twenty-four years later, Vantage is still led by him, turning Vantage into a national force with a human mood.</p>\r\n<p class=\"font_7\">Today, everyone at Vantage shares an entrepreneurial spirit and an enduring belief that brands can change the world – and we help brands opt for that everyday. From Union Bank to Askari Bank and Chenone to Nishat, Vantage helps brands stand out and stand for something everyday – while never standing still.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.1\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/career.jpg\" alt=\"\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"contact\" class=\"\" id=\"\"][title size=\"2\" content_align=\"center\" style_type=\"none\" sep_color=\"\" margin_top=\"\" margin_bottom=\"20px\" class=\"\" id=\"\"]CONTACT[/title][fusion_text]\r\n<p class=\"font_20\" style=\"text-align: center; margin-bottom: 5px;\">Let’s get in touch.</p>\r\n<p class=\"font_20\" style=\"text-align: center;\">We can\'t wait to hear from you.</p>\r\n[/fusion_text][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_code]W2NvbnRhY3QtZm9ybS03IGlkPSI2OCIgdGl0bGU9IkNvbnRhY3QgZm9ybSAxIl0=[/fusion_code][/two_third][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_7\">28-N, Industrial Area, Gulberg-II, Lahore, Pakistan</p>\r\n[/fusion_text][checklist icon=\"fa-check\" iconcolor=\"#000000\" circle=\"\" circlecolor=\"#e2e2e2\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"fa-user\"]+92 42 35765001-5[/li_item][li_item icon=\"fa-facebook-official\"]<a href=\"https://www.fb.com/vantagepakistan\" target=\"_blank\">VantagePakistan</a>[/li_item][li_item icon=\"fa-linkedin\"]<a href=\"https://www.linkedin.com/company/vantage-printers\" target=\"_blank\">vantage-printers</a>[/li_item][/checklist][/one_fourth][/fullwidth][fullwidth background_color=\"#f2e9e9\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"0.5\" animation_offset=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://vantageprinters.com/vital/wp-content/uploads/2016/05/blog.png\" alt=\"\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_third][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][two_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"slide\" animation_direction=\"down\" animation_speed=\"1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<p class=\"font_20\">Explore our blog for the latest branding resources, insightful articles, personal reflections and ideas that will engage and inspire you to move the world forward, faster.</p>\r\n<p class=\"font_20\">You\'ll find new ways to connect with Vantage and the team here.</p>\r\n[/fusion_text][/two_fifth][one_fifth last=\"no\" spacing=\"yes\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][button link=\"\" color=\"orange\" size=\"small\" stretch=\"yes\" type=\"flat\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" animation_offset=\"\" alignment=\"\" class=\"\" id=\"\"]Read it now[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_fifth][/fullwidth]','Home','','inherit','closed','closed','','4-revision-v1','','','2016-06-24 11:18:15','2016-06-24 11:18:15','',4,'http://vantageprinters.com/vital/4-revision-v1/',0,'revision','',0),(203,1,'2016-06-24 11:18:41','2016-06-24 11:18:41','[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h2 class=\"font_7\" style=\"text-align: center; text-transform: uppercase;\">Making lasting impressions across</h2>\r\n<h2 class=\"font_7\" style=\"text-align: center; text-transform: uppercase;\">all channels and touch-points.</h2>\r\n<h3 style=\"text-align: center;\">To us, digital is not a mere afterthought, but a ground-breaking reality that has already taken the world by storm.</h3>\r\n</div>\r\n<div id=\"comp-ilvwcksj2\" class=\"s1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.1.1.$SITE_PAGES.$qpv1t.1.$comp-ilvwcksj2\">\r\n<p class=\"font_7\" style=\"text-align: center;\">Today, the first interaction of consumers with a brand is often digital. One-third of all the web traffic comes from smartphones and tablets, while over 70% of internet users are most likely to purchase from a brand that they are following on a social networking site.</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">At Vantage, we believe in crafting cohesive customer journeys across a palette of new platforms. These emerging touchstones will become the cornerstones of your brand presence in the future – creating an image that is creatively and commercially more viable for your business in the long-run.</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">Which is why, we believe in providing you with extended reach, access and communication – anywhere and everywhere.</p>\r\n\r\n<a class=\"back-to-btn\" href=\"http://vantageprinters.com/vital/#services\">back to services</a>[/fusion_text][/fullwidth]','Digital','','inherit','closed','closed','','194-revision-v1','','','2016-06-24 11:18:41','2016-06-24 11:18:41','',194,'http://vantageprinters.com/vital/194-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_css`
--

DROP TABLE IF EXISTS `wp_revslider_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` text DEFAULT NULL,
  `hover` text DEFAULT NULL,
  `params` text NOT NULL,
  `advanced` mediumtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=122 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_css`
--

LOCK TABLES `wp_revslider_css` WRITE;
/*!40000 ALTER TABLE `wp_revslider_css` DISABLE KEYS */;
INSERT INTO `wp_revslider_css` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','[]','{\"idle\":{\"-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)\"},\"hover\":\"\"}'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','[]','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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)\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\"},\"hover\":\"\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\"},\"hover\":\"\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\"},\"hover\":\"\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":{\"text-align\":\"center\"},\"hover\":\"\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\"}','{\"idle\":[],\"hover\":\"\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','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\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Power2.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}'),(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}'),(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}'),(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":[\"\"],\"hover\":\"\"}'),(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}'),(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"Power3.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}'),(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"Power3.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Back.easeOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}'),(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}'),(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}'),(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}'),(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power2.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}'),(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(110,'.tp-caption.avada_huge_white_text','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#ffffff\",\"font-size\":\"130px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}',NULL),(111,'.tp-caption.avada_huge_black_text','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#000000\",\"font-size\":\"130px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}',NULL),(112,'.tp-caption.avada_big_black_text','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#333333\",\"font-size\":\"42px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}',NULL),(113,'.tp-caption.avada_big_white_text','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"font-size\":\"42px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}',NULL),(114,'.tp-caption.avada_big_black_text_center','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#333333\",\"font-size\":\"38px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\",\"text-align\":\"center\"}',NULL),(115,'.tp-caption.avada_med_green_text','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#A0CE4E\",\"font-size\":\"24px\",\"line-height\":\"24px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}',NULL),(116,'.tp-caption.avada_small_gray_text','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#747474\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}',NULL),(117,'.tp-caption.avada_small_white_text','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\"}',NULL),(118,'.tp-caption.avada_block_black','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#A0CE4E\",\"text-shadow\":\"none\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"padding\":[\"1px\", \"10px\", \"0px\", \"10px\"],\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#000\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}',NULL),(119,'.tp-caption.avada_block_green','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"padding\":[\"1px\", \"10px\", \"0px\", \"10px\"],\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#A0CE4E\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}',NULL),(120,'.tp-caption.avada_block_white','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"padding\":[\"1px\", \"10px\", \"0px\", \"10px\"],\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#000\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}',NULL),(121,'.tp-caption.avada_block_white_trans','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"padding\":[\"1px\", \"10px\", \"0px\", \"10px\"],\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"rgba(0, 0, 0, 0.6)\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}',NULL);
/*!40000 ALTER TABLE `wp_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_layer_animations`
--

DROP TABLE IF EXISTS `wp_revslider_layer_animations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_layer_animations`
--

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

--
-- Table structure for table `wp_revslider_navigations`
--

DROP TABLE IF EXISTS `wp_revslider_navigations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `css` mediumtext NOT NULL,
  `markup` mediumtext NOT NULL,
  `settings` mediumtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_navigations`
--

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

--
-- Table structure for table `wp_revslider_sliders`
--

DROP TABLE IF EXISTS `wp_revslider_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext DEFAULT NULL,
  `params` mediumtext NOT NULL,
  `settings` text DEFAULT NULL,
  `type` varchar(191) NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_sliders`
--

LOCK TABLES `wp_revslider_sliders` WRITE;
/*!40000 ALTER TABLE `wp_revslider_sliders` DISABLE KEYS */;
INSERT INTO `wp_revslider_sliders` VALUES (1,'home','home','{\"hero_active\":\"-1\",\"source_type\":\"gallery\",\"instagram-count\":\"\",\"instagram-access-token\":\"\",\"instagram-type\":\"user\",\"instagram-user-id\":\"\",\"instagram-hash-tag\":\"\",\"flickr-count\":\"\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"facebook-count\":\"\",\"facebook-transient\":\"1200\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"album\",\"facebook-album\":\"\",\"facebook-album-select\":\"\",\"facebook-app-id\":\"\",\"facebook-app-secret\":\"\",\"twitter-count\":\"\",\"twitter-transient\":\"1200\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"off\",\"twitter-include-retweets\":\"off\",\"twitter-exclude-replies\":\"off\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"youtube-count\":\"\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"vimeo-count\":\"\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"product_types\":\"product\",\"product_category\":\"\",\"posts_list\":\"\",\"fetch_type\":\"cat_tag\",\"post_types\":\"post\",\"post_category\":\"\",\"product_sortby\":\"ID\",\"product_sort_direction\":\"DESC\",\"max_slider_products\":\"30\",\"excerpt_limit_product\":\"55\",\"reg_price_from\":\"\",\"reg_price_to\":\"\",\"sale_price_from\":\"\",\"sale_price_to\":\"\",\"instock_only\":\"off\",\"featured_only\":\"off\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"title\":\"home\",\"alias\":\"home\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home\\\\\\\"]\",\"slider-type\":\"standard\",\"slider_type\":\"fullscreen\",\"width\":\"1350\",\"height\":\"700\",\"width_notebook\":\"1024\",\"height_notebook\":\"768\",\"enable_custom_size_notebook\":\"off\",\"width_tablet\":\"778\",\"height_tablet\":\"960\",\"enable_custom_size_tablet\":\"off\",\"width_mobile\":\"480\",\"height_mobile\":\"720\",\"enable_custom_size_iphone\":\"off\",\"full_screen_align_force\":\"off\",\"fullscreen_min_height\":\"\",\"autowidth_force\":\"off\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"main_overflow_hidden\":\"off\",\"auto_height\":\"off\",\"min_height\":\"\",\"max_width\":\"\",\"force_full_width\":\"on\",\"next_slide_on_window_focus\":\"off\",\"disable_focus_listener\":\"off\",\"delay\":\"9000\",\"start_js_after_delay\":\"0\",\"def-slide_transition\":\"fade\",\"def-transition_duration\":\"300\",\"def-image_source_type\":\"full\",\"def-background_fit\":\"cover\",\"def-bg_fit_x\":\"100\",\"def-bg_fit_y\":\"100\",\"def-bg_position\":\"center center\",\"def-bg_position_x\":\"0\",\"def-bg_position_y\":\"0\",\"def-bg_repeat\":\"no-repeat\",\"def-kenburn_effect\":\"off\",\"def-kb_start_fit\":\"100\",\"def-kb_easing\":\"Linear.easeNone\",\"def-kb_end_fit\":\"100\",\"def-kb_start_offset_x\":\"0\",\"def-kb_start_offset_y\":\"0\",\"def-kb_end_offset_x\":\"0\",\"def-kb_end_offset_y\":\"0\",\"def-kb_start_rotate\":\"0\",\"def-kb_end_rotate\":\"0\",\"def-kb_duration\":\"10000\",\"0\":\"Clear\",\"start_with_slide_enable\":\"off\",\"start_with_slide\":\"1\",\"first_transition_active\":\"off\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"stop_on_hover\":\"off\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"shuffle\":\"off\",\"loop_slide\":\"off\",\"label_viewport\":\"off\",\"viewport_start\":\"wait\",\"viewport_area\":\"80\",\"enable_progressbar\":\"off\",\"show_timerbar\":\"top\",\"progress_height\":\"5\",\"progress_opa\":\"15\",\"progressbar_color\":\"#000000\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"shadow_type\":\"0\",\"background_dotted_overlay\":\"none\",\"background_color\":\"transparent\",\"padding\":\"0\",\"show_background_image\":\"off\",\"background_image\":\"\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"enable_arrows\":\"off\",\"navigation_arrow_style\":\"round\",\"arrows_always_on\":\"false\",\"hide_arrows\":\"200\",\"hide_arrows_mobile\":\"1200\",\"hide_arrows_on_mobile\":\"off\",\"arrows_under_hidden\":\"0\",\"hide_arrows_over\":\"off\",\"arrows_over_hidden\":\"0\",\"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\",\"enable_bullets\":\"off\",\"navigation_bullets_style\":\"round\",\"bullets_space\":\"5\",\"bullets_direction\":\"horizontal\",\"bullets_always_on\":\"false\",\"hide_bullets\":\"200\",\"hide_bullets_mobile\":\"1200\",\"hide_bullets_on_mobile\":\"off\",\"bullets_under_hidden\":\"0\",\"hide_bullets_over\":\"off\",\"bullets_over_hidden\":\"0\",\"bullets_align_hor\":\"center\",\"bullets_align_vert\":\"bottom\",\"bullets_offset_hor\":\"0\",\"bullets_offset_vert\":\"20\",\"enable_thumbnails\":\"off\",\"thumbnails_padding\":\"5\",\"span_thumbnails_wrapper\":\"off\",\"thumbnails_wrapper_color\":\"transparent\",\"thumbnails_wrapper_opacity\":\"100\",\"thumbnails_style\":\"round\",\"thumb_amount\":\"5\",\"thumbnails_space\":\"5\",\"thumbnail_direction\":\"horizontal\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_width_min\":\"100\",\"thumbs_always_on\":\"false\",\"hide_thumbs\":\"200\",\"hide_thumbs_mobile\":\"1200\",\"hide_thumbs_on_mobile\":\"off\",\"thumbs_under_hidden\":\"0\",\"hide_thumbs_over\":\"off\",\"thumbs_over_hidden\":\"0\",\"thumbnails_inner_outer\":\"inner\",\"thumbnails_align_hor\":\"center\",\"thumbnails_align_vert\":\"bottom\",\"thumbnails_offset_hor\":\"0\",\"thumbnails_offset_vert\":\"20\",\"enable_tabs\":\"off\",\"tabs_padding\":\"5\",\"span_tabs_wrapper\":\"off\",\"tabs_wrapper_color\":\"transparent\",\"tabs_wrapper_opacity\":\"5\",\"tabs_style\":\"round\",\"tabs_amount\":\"5\",\"tabs_space\":\"5\",\"tabs_direction\":\"horizontal\",\"tabs_width\":\"100\",\"tabs_height\":\"50\",\"tabs_width_min\":\"100\",\"tabs_always_on\":\"false\",\"hide_tabs\":\"200\",\"hide_tabs_mobile\":\"1200\",\"hide_tabs_on_mobile\":\"off\",\"tabs_under_hidden\":\"0\",\"hide_tabs_over\":\"off\",\"tabs_over_hidden\":\"0\",\"tabs_inner_outer\":\"inner\",\"tabs_align_hor\":\"center\",\"tabs_align_vert\":\"bottom\",\"tabs_offset_hor\":\"0\",\"tabs_offset_vert\":\"20\",\"touchenabled\":\"off\",\"drag_block_vertical\":\"off\",\"swipe_velocity\":\"75\",\"swipe_min_touches\":\"50\",\"swipe_direction\":\"horizontal\",\"keyboard_navigation\":\"off\",\"keyboard_direction\":\"horizontal\",\"mousescroll_navigation\":\"off\",\"previewimage_width\":\"100\",\"previewimage_height\":\"50\",\"carousel_infinity\":\"off\",\"carousel_space\":\"0\",\"carousel_borderr\":\"0\",\"carousel_borderr_unit\":\"px\",\"carousel_padding_top\":\"0\",\"carousel_padding_bottom\":\"0\",\"carousel_maxitems\":\"3\",\"carousel_stretch\":\"off\",\"carousel_fadeout\":\"on\",\"carousel_varyfade\":\"off\",\"carousel_rotation\":\"off\",\"carousel_varyrotate\":\"off\",\"carousel_maxrotation\":\"0\",\"carousel_scale\":\"off\",\"carousel_varyscale\":\"off\",\"carousel_scaledown\":\"50\",\"carousel_hposition\":\"center\",\"carousel_vposition\":\"center\",\"use_parallax\":\"on\",\"disable_parallax_mobile\":\"off\",\"ddd_parallax\":\"off\",\"ddd_parallax_shadow\":\"off\",\"ddd_parallax_bgfreeze\":\"off\",\"ddd_parallax_overflow\":\"off\",\"ddd_parallax_layer_overflow\":\"off\",\"ddd_parallax_zcorrection\":\"65\",\"parallax_type\":\"mouse\",\"parallax_origo\":\"enterpoint\",\"parallax_speed\":\"400\",\"parallax_level_16\":\"55\",\"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\":\"46\",\"parallax_level_11\":\"47\",\"parallax_level_12\":\"48\",\"parallax_level_13\":\"49\",\"parallax_level_14\":\"50\",\"parallax_level_15\":\"51\",\"lazy_load_type\":\"none\",\"seo_optimization\":\"none\",\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"jquery_noconflict\":\"off\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"jquery_debugmode\":\"off\",\"custom_css\":\"\",\"custom_javascript\":\"\"}','{\"version\":5}','');
/*!40000 ALTER TABLE `wp_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_slides`
--

DROP TABLE IF EXISTS `wp_revslider_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = 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` mediumtext NOT NULL,
  `layers` mediumtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_slides`
--

LOCK TABLES `wp_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_slides` VALUES (1,1,1,'{\"background_type\":\"image\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"0\":\"Remove\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"video_arguments\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"video_arguments_vim\":\"title=0&byline=0&portrait=0&api=1\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_repeat\":\"no-repeat\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"kb_easing\":\"Linear.easeNone\",\"kb_duration\":\"10000\",\"image_id\":\"48\",\"title\":\"Slide\",\"delay\":\"\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"save_performance\":\"off\",\"slide_thumb\":\"\",\"thumb_dimension\":\"slider\",\"thumb_for_admin\":\"off\",\"slide_transition\":[\"fade\"],\"slot_amount\":[\"default\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"],\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"params_1\":\"\",\"params_1_chars\":\"10\",\"params_2\":\"\",\"params_2_chars\":\"10\",\"params_3\":\"\",\"params_3_chars\":\"10\",\"params_4\":\"\",\"params_4_chars\":\"10\",\"params_5\":\"\",\"params_5_chars\":\"10\",\"params_6\":\"\",\"params_6_chars\":\"10\",\"params_7\":\"\",\"params_7_chars\":\"10\",\"params_8\":\"\",\"params_8_chars\":\"10\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"image\":\"http:\\/\\/vantageprinters.com\\/vital\\/wp-content\\/uploads\\/2016\\/05\\/option1.gif\",\"slide_parallax_level\":\"14\",\"0\":\"Remove\"}','[{\"style\":\"\",\"text\":\"Image 1\",\"type\":\"image\",\"image_url\":\"http:\\/\\/vantageprinters.com\\/vital\\/wp-content\\/uploads\\/2016\\/06\\/logo.png\",\"scaleX\":{\"desktop\":\"806px\"},\"scaleY\":{\"desktop\":\"266px\"},\"originalWidth\":600,\"originalHeight\":198,\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":1,\"left\":{\"desktop\":0},\"top\":{\"desktop\":103},\"internal_class\":\"\",\"hover\":false,\"alias\":\"image 1\",\"loop_animation\":\"none\",\"loop_easing\":\"linearEaseNone\",\"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\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"animation\":\"tp-fade\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"static_end\":\"last\",\"speed\":300,\"align_hor\":{\"desktop\":\"center\"},\"align_vert\":{\"desktop\":\"bottom\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"time\":500,\"endspeed\":300,\"endtime\":9300,\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"width\":806,\"height\":266,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"20\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation\":{\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"},\"2d_rotation\":0,\"deformation-hover\":{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":0,\"endWithSlide\":true,\"toggle\":false,\"toggle_use_hover\":false,\"texttoggle\":\"\",\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]','\"\"');
/*!40000 ALTER TABLE `wp_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_static_slides`
--

DROP TABLE IF EXISTS `wp_revslider_static_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` mediumtext NOT NULL,
  `layers` mediumtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_static_slides`
--

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

--
-- Table structure for table `wp_term_relationships`
--

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

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(8,2,0),(9,2,0),(10,2,0),(11,2,0),(12,2,0),(13,2,0),(15,2,0),(16,2,0),(19,3,0),(28,4,0),(50,7,0),(75,7,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,8),(3,3,'slide-page','',0,1),(4,4,'slide-page','',0,1),(5,5,'portfolio_category','',0,0),(6,6,'portfolio_category','',0,0),(7,7,'post_format','',0,0),(8,8,'post_format','',0,0);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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 DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

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

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Main Menu','main-menu',0),(3,'ink','ink-fusion-slider',0),(4,'video-slider','video-slider',0),(5,'Fashion','fashion',0),(6,'Automotive','automotive',0),(7,'post-format-gallery','post-format-gallery',0),(8,'post-format-image','post-format-image',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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 DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers',''),(13,1,'show_welcome_panel','1'),(14,1,'session_tokens','a:1:{s:64:\"f4491d25109fb91b58de01c16a288a27cb783cfb8d9c1482bb6a1a8496cca0bf\";a:4:{s:10:\"expiration\";i:1680476252;s:2:\"ip\";s:15:\"216.162.201.163\";s:2:\"ua\";s:118:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/107.0.5304.88 Safari/537.36\";s:5:\"login\";i:1680303452;}}'),(15,1,'wp_dashboard_quick_press_last_post_id','206'),(16,1,'wp_user-settings','libraryContent=browse&imgsize=full&editor=html&align=center&hidetb=1'),(17,1,'wp_user-settings-time','1466766608'),(18,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(19,1,'metaboxhidden_nav-menus','a:11:{i:0;s:19:\"add-post-type-slide\";i:1;s:29:\"add-post-type-avada_portfolio\";i:2;s:23:\"add-post-type-avada_faq\";i:3;s:33:\"add-post-type-themefusion_elastic\";i:4;s:12:\"add-post_tag\";i:5;s:15:\"add-post_format\";i:6;s:22:\"add-portfolio_category\";i:7;s:20:\"add-portfolio_skills\";i:8;s:18:\"add-portfolio_tags\";i:9;s:16:\"add-faq_category\";i:10;s:25:\"add-themefusion_es_groups\";}'),(20,1,'nav_menu_recently_edited','2'),(21,1,'author_facebook',''),(22,1,'author_twitter',''),(23,1,'author_linkedin',''),(24,1,'author_dribble',''),(25,1,'author_gplus',''),(26,1,'author_custom','');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

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

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$BdAlRRLwI6lh8RQ1iDPWCuNcUVRmWk/','admin','masifcga@gmail.com','','2016-05-31 20:01:30','',0,'admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2023-04-28 16:13:12
